r669 vs r670
11
{{{#!style
2
3
.my-table {
4
5
border-radius: 16px; overflow:hidden;
6
7
background-color: aliceblue;
8
9
transition: 0.3s; /* 색이 부드럽게 변함 */
10
11
width :100px; height: 100px;
12
13
}
14
15
16
17
.my-table:hover {
18
19
background-color:#0f0
20
21
}
22
23
}}}
24
25
26
27
||<tableclass=my-table><tablebordercolor=transparent>[[파일:해킹범.webp|width=100%]] ||
28
29
30
31
32
33
{{{#!style
234
.margin {
335
margin: -12px -2px;
436
}
......
93125
94126
95127
96
{{{#!style
97128
98
.my-table {
99129
100
border-radius: 16px; overflow:hidden;
101130
102
background-color: aliceblue;
103131
104
transition: 0.3s; /* 색이 부드럽게 변함 */
105
106
width :300px; height: 300px;
107
108
}
109
110
111
112
.my-table:hover {
113
114
background-color: yellow; /* 마우스 올리면 노란색 */
115
116
}
117
118
}}}
119
120
121
122132
||<tableclass=my-table><tablebordercolor=transparent> 클릭 ||
123133
124134
......