νλ‘κ·Έλλ° κ³΅λΆ/HTML&CSS
[ex34~37] CSS(selector-nth:child,μ μκΈ,::before)
λμ₯μΏ΅μΌ
2023. 4. 18. 09:51
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 |