ex34
๊ฐ์ ํด๋์ค
1. :first-child > ์์ ์ด ์์ ์ ๊ทธ๋ฃน์์ ์ฒซ๋ฒ์งธ ์์์ธ์ง?
2. :last-child > ์์ ์ด ์์ ์ ๊ทธ๋ฃน์์ ๋ง์ง๋ง ์์์ธ์ง?
3. :nth-child() > 1๋ถํฐ ์์
4. :nth-last-child() > ๋ค์์๋ถํฐ
n
1. ์ซ์: index(์์น) > 1๋ถํฐ ์์
2. ์์ด: 2n, 2n+1 (0๋ถํฐ ์์)
3. ์์ด: even, odd
์ฝ๋
๋๋ณด๊ธฐ
<style>
li:nth-child(odd) {
color: orange;
}
/*
li:first-child {
color: orange;
}
li:last-child {
color: coral;
}
li:nth-child(3) {
color: blue;
}
li:nth-last-child(3) {
color: gold;
}
*/
.tbl {
border: 1px solid black;
border-collapse: collapse;
}
.tbl td {
border: 1px solid black;
padding: 5px;
}
/* .tbl tr:first-child {
background-color: gold;
} */
/* ๋ชจ๋ td๋ค์ ์ฒซ์งธ๋ค > ์ฒซ๋ฒ์งธ์ด */
/* .tbl td:first-child {
background-color: tomato;
} */
/* ๋ค์ฏ๋ฒ์งธ์ด */
/* .tbl td:nth-child(5) {
background-color: tomato;
} */
/* ์ง์ํ */
/* .tbl tr:nth-child(even) {
background-color: #DDD;
} */
/* ์ง์ํ์ด๋ฉด์ ํ์์ด */
.tbl tr:nth-child(even) td:nth-child(odd) {
background-color: gold;
}
/* ํ์ํ์ด๋ฉด์ ์ง์์ด */
.tbl tr:nth-child(odd) td:nth-child(even) {
background-color: gold;
}
</style>
</head>
<body>
<!-- ex34_selector.html -->
<h1>๋ชฉ๋ก</h1>
<ul class="list1">
<li>๊ฐ์์ง</li>
<li>๊ณ ์์ด</li>
<li>๋ค๋์ฅ</li>
<li>์</li>
<li>๋ผ์ง</li>
<li>๋ง</li>
<li>์ฝ๋ผ๋ฆฌ</li>
<li>์ฌ์</li>
<li>ํธ๋์ด</li>
<li>๋๋</li>
</ul>
<h1>ํ
์ด๋ธ</h1>
<!-- table.tbl>tr*20>td{item}*10 -->
<table class="tbl">
<tr>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
</tr>
<tr>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
</tr>
<tr>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
</tr>
<tr>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
</tr>
</table>
</body>
</html>
ํ๋ฉด
๋๋ณด๊ธฐ
๋ชฉ๋ก
- ๊ฐ์์ง
- ๊ณ ์์ด
- ๋ค๋์ฅ
- ์
- ๋ผ์ง
- ๋ง
- ์ฝ๋ผ๋ฆฌ
- ์ฌ์
- ํธ๋์ด
- ๋๋
ํ ์ด๋ธ
item | item | item | item | item | item | item | item | item | item |
item | item | item | item | item | item | item | item | item | item |
item | item | item | item | item | item | item | item | item | item |
item | item | item | item | item | item | item | item | item | item |