CSSπ§/css μ νμ&κ°μν΄λμ€,곡ν΅ν΄λμ€
CSS :nth-child(n) even, 2n μ§μλ²μ§Έ μ€μ
hyojinny
2022. 10. 28. 17:01
1μ΄λ‘ λμ΄λ 컨ν μΈ λ€μ
μ§μμμλ§ μ€λ₯Έμͺ½μΌλ‘ κ°κ² μ¬λ°°μΉ
곡ν΅ν΄λμ€λ‘ λμν ν΄λμ€μ :nth-chiled(even)
.about_page .desc_wrap:nth-child(even) .desc_img {
float: right;
}
.about_page .desc_wrap:nth-child(even) .txt_wrap {
float: right;
}
λλ
곡ν΅ν΄λμ€λ‘ λμν ν΄λμ€μ :nth-chiled(2n)
.about_page .desc_wrap:nth-child(2n) .desc_img {
float: right;
}
.about_page .desc_wrap:nth-child(2n) .txt_wrap {
float: right;
}
nth-child λ νμ μμλ€μ μ νμ΄ κ°λ₯ν κ°μμ νμμ΄λ€.
μ§μ even / 2n
νμ odd / 1n