Front-End/CSS
μ€νμΌ μμ
π³μ§νμ μ²
2022. 9. 19. 01:09
μμ
<div class="ecosystem">μνκ³
<div class="animal">λλ¬Ό
<div class="tiger">νΈλμ΄</div>
<div class="lion">μ¬μ</div>
<div class="elephant">μ½λΌλ¦¬</div>
</div>
<div class="plant">μλ¬Ό</div>
</div>
.animal {
color: red;
}
- .animalμ μμ μμκΉμ§ μν₯μ λ―ΈμΉλ€.
β» μμλλ CSS μμ±λ€ (λλΆλΆ κΈμ / λ¬Έμ κ΄λ ¨ μμ±λ€)
- font-style: κΈμ κΈ°μΈκΈ°
- font-weight: κΈμ λκ»
- font-size: κΈμ ν¬κΈ°
- line-height: μ€ λμ΄
- font-family: ν°νΈ(μ체)
- color: κΈμ μμ
- text-align: μ λ ¬
κ°μ μμ
βΆ inherit: μμ κΈ°λ₯μ΄ μλ μμ±λ€μκ² μμ κΈ°λ₯μ κ°μ λ‘ λΆμ¬νλ€.
<div class="parent">
<div class="child"></div>
</div>
.parent {
width: 300px;
height: 200px;
background-color: red;
}
.child {
width: 100px;
height: inherit;
background-color: inherit;
}
- μμ μμμ inheritμ μ€μ νλ©΄ λΆλͺ¨ μμμ μμ±μ μμνλ€.