r2874 vs r2875
11
[[분류:냥]]
22
{{{#!style
3
/* scoped styles are not supported */
4
table.colored > tbody > tr > td:first-of-type {
5
font-weight: bold;
6
}
7
table.colored > tbody > tr:nth-of-type(3n) > td:first-of-type {
8
color: red;
9
}
10
table.colored > tbody > tr:nth-of-type(3n + 1) > td:first-of-type {
11
color: lime;
12
}
13
table.colored > tbody > tr:nth-of-type(3n + 2) > td:first-of-type {
14
color: blue;
15
}
16
/* media query is not supported */
3
table.classcolor > tbody > tr > td:first-of-type {font-weight: 100}
4
table.classcolor > tbody > tr:nth-of-type(2n) > td:first-of-type {background: #000; color: var(--article-background-color)}
5
table.classcolor > tbody > tr:nth-of-type(2n + 1) > td:first-of-type {background: #fff; color: var(--text-color)}
6
table.classcolor > tbody > tr > td:second-of-type {font-weight: bold}
7
table.classcolor > tbody > tr:nth-of-type(2n) > td:second-of-type {background: #fff}
8
table.classcolor > tbody > tr:nth-of-type(2n + 1) > td:second-of-type {background: #000; color: var(--article-background-color)}
179
@theseed-dark-mode {
18
table.colored > tbody > tr:nth-of-type(3n) > td:first-of-type {
19
color: maroon;
20
}
21
table.colored > tbody > tr:nth-of-type(3n + 1) > td:first-of-type {
22
color: green;
23
}
24
table.colored > tbody > tr:nth-of-type(3n + 2) > td:first-of-type {
25
color: navy;
26
}
10
table.classcolor > tbody > tr > td:first-of-type {font-weight: bold}
11
table.classcolor > tbody > tr:nth-of-type(2n) > td:first-of-type {background: #fff}
12
table.classcolor > tbody > tr:nth-of-type(2n + 1) > td:first-of-type {background: #000}
13
table.classcolor > tbody > tr > td:second-of-type {font-weight: 100}
14
table.classcolor > tbody > tr:nth-of-type(2n) > td:second-of-type {background: #000}
15
table.classcolor > tbody > tr:nth-of-type(2n + 1) > td:second-of-type {background: #fff}
2716
}
2817
}}}
29
== styled table test ==
30
||<tableclass=colored><table width=100%><table bgcolor=#ffffff,#2d2f34><table color=#212529,#e0e0e0><colbgcolor=#ffffff,#000000> 1 ||1 ||
31
|| 2 ||2 ||
32
|| 3 ||3 ||
33
|| 4 ||4 ||
34
|| 5 ||5 ||
35
|| 6 ||6 ||
36
|| 7 ||7 ||
37
|| 8 ||8 ||
38
|| 9 ||9 ||
39
|| 10 ||10 ||
18
||<tableclass=classcolor><tablebgcolor=transparent> asdf ||<colcolor=red> a ||<colcolor=red> a || a || a ||
19
|| asdf || a || a || a || a ||
20
|| asdf || a || a || a || a ||
21
|| asdf || a || a || a || a ||
22
|| asdf || a || a || a || a ||
23
|| asdf || a || a || a || a ||
24
|| asdf || a || a || a || a ||
25
|| asdf || a || a || a || a ||
26
|| asdf || a || a || a || a ||
27
|| asdf || a || a || a || a ||
28
|| asdf || a || a || a || a ||
4029
4130
4231
{{{#!if x = true; y=false
......