728x90
λ°μν
π‘ μ€μ΅ ν¬μΈνΈ!
- % λ₯Ό μ΄μ©ν μμν΄λμ€ μμ± λ° @extend λ₯Ό νμ©νμ¬ μ΄λ―Έ μλ ν΄λμ€λ₯Ό μμ, νμ₯ν΄λ³΄μλ€.
- μ°Έκ³ λ‘ % λ . λμ μ¬μ© κ°λ₯ν μμν΄λμ€λ‘ CSS νμΌμμ ν΄λμ€λ‘ μ»΄νμΌνκ³ μΆμ§ μμ λ μ¬μ©νλ©°, κ·Έλμ μ€μ λ‘ μ»΄νμΌλμμ λ @extend λ°μ ν΄λμ€λͺ λ€λ‘ λͺ¨μμ νκΈ°λ¨
π Alert λ°μ€ λ μ΄μμ
π HTML
<div class="alert-box-green">
<p>Alert Number 1!</p>
</div>
<div class="alert-box-blue">
<p>Alert Number 2!</p>
</div>
<div class="alert-box-yellow">
<p>Alert Number 3!</p>
</div>
π SCSS
%alert-box {
padding: 15px;
width: 90%;
margin: auto;
margin-top: 15px;
font-weight: bold;
border-radius: 5px;
}
.alert-box-green {
@extend %alert-box;
border: 1.5px solid rgb(99, 236, 99);
background: lightgreen;
color: darkgreen;
}
.alert-box-blue {
@extend %alert-box;
border: 1.5px solid rgb(114, 201, 230);
background: lightblue;
color: darkblue;
}
.alert-box-yellow {
@extend %alert-box;
border: 1.5px solid rgb(241, 241, 137);
background: lightgoldenrodyellow;
color: darkgoldenrod;
}
- %λ₯Ό ν΄λμ€λͺ μμ λΆμ΄λ©΄ μμν΄λμ€κ° μμ±λλ€. (ν΄λμ€μμ λ»νλ λ§μΉ¨νλ₯Ό λΆμ΄μ§ μλ κ² ν¬μΈνΈ!)
- νμ¬ λ§λ€κ³ μ νλ λ°μ€λ λ°°κ²½μ, ν°νΈμ, ν λλ¦¬λ§ λ€λ₯΄λ―λ‘ κ·Έκ²μ μ μΈν 곡ν΅μ μΈ μμ±λ€μ μμν΄λμ€μ λ΄μλκ³ @extend λ₯Ό μ¬μ©νμ¬ μμλ°λλ€.
- κ·Έλ¬λ©΄ μ€λ³΅λ μ½λλ₯Ό μ€μ΄κ³ , λ² μ΄μ€κ° λλ λΆλΆμ μμν΄λμ€μμ μμ νλ©΄ λλ€.
π μ»΄νμΌνμ¬ CSS λ‘ λ³ν
.alert-box-yellow, .alert-box-blue, .alert-box-green {
padding: 15px;
width: 90%;
margin: auto;
margin-top: 15px;
font-weight: bold;
border-radius: 5px;
}
.alert-box-green {
border: 1.5px solid #63ec63;
background: lightgreen;
color: darkgreen;
}
.alert-box-blue {
border: 1.5px solid #72c9e6;
background: lightblue;
color: darkblue;
}
.alert-box-yellow {
border: 1.5px solid #f1f189;
background: lightgoldenrodyellow;
color: darkgoldenrod;
}/*# sourceMappingURL=alertbox.css.map */
728x90
λ°μν
'[κ°λ°] Practice > HTML CSS' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[HTML/CSS] HTML Video, Audio λ€λ£¨κΈ° (0) | 2022.03.01 |
---|---|
[HTML/CSS] SCSS λ‘ row, col λ§λ€κΈ° (0) | 2022.03.01 |
[HTML/CSS] SCSS λ‘ λ¦¬μ€νΈ λ§λ€κΈ° (0) | 2022.03.01 |
[HTML/CSS] SNS Profile λ§λ€κΈ° (0) | 2022.03.01 |
[HTML/CSS] Bootstrap μΌλ‘ μΉ΄λ λ μ΄μμ λ§λ€κΈ°_Grid_2 (0) | 2022.03.01 |