본문으로 건너뛰기
사용자

o00o/연습장4(r13판 Blame)

r13
r9
1{{{#!style
r13
2table.tab1 > tbody > tr:nth-child(2) { display: none; }
3table.tab1 .hide { display: none; }
r9
4}}}
r10
5
r13
6||<thead><sortable><tableclass=tab1> 강화 여부 ||<class=hide> ||
7||<class=hide> 1 || 노강화 ||
8||<class=hide> 0 || 강화 ||
r10
9
10
r13
11
12{{{#!style
13table.menu > thead > tr { display: flex; gap: 5px; margin-bottom: 3px; }
14table.menu th { width: 60px; padding: 10px !important; border-color: #000; }
15table.menu td { border-color: #000; }
16
17@theseed-dark-mode {
18 table.menu { background: transparent; }
19 table.menu th { border-color: #777; }
20 table.menu td { border-color: #777; }
21}
22
23table.menu th::before { display: none !important; }
24table.menu th::after { display: none !important; }
25
26table.menu > tbody > tr:nth-of-type(n + 2) { display: none; }
27
28table.menu > tbody > tr > td { padding: 0; font-size: 0; display: none; }
29
30table.menu > tbody > tr > td.content {
31 width: 100%; display: inline-block !important;
32}
33.content {
34 font-size: initial;
35 padding: 2px 4px; text-align: left;
36}
37}}}
38||<thead><sortable><tableclass=menu> A ||<sortable> B ||<sortable> C ||<sortable> D ||
39||<class=content> 0{{{#!wiki class="content"
40Selected A}}} || 1 || 1 || 1 ||
41|| 1 ||<class=content> 0{{{#!wiki class="content"
42Selected B}}} || 1 || 1 ||
43|| 1 || 1 ||<class=content> 0{{{#!wiki class="content"
44Selected C}}} || 1 ||
45|| 1 || 1 || 1 ||<class=content> 0{{{#!wiki class="content"
46Selected D}}} ||
47
r10
48