ಗಾತ್ರ
ನಮ್ಮ ಅಗಲ ಮತ್ತು ಎತ್ತರದ ಉಪಯುಕ್ತತೆಗಳೊಂದಿಗೆ ಸುಲಭವಾಗಿ ಒಂದು ಅಂಶವನ್ನು ಅಗಲವಾಗಿ ಅಥವಾ ಎತ್ತರವಾಗಿ (ಅದರ ಪೋಷಕರಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ) ಮಾಡಿ.
$sizes
ನಲ್ಲಿ ಸಾಸ್ ನಕ್ಷೆಯಿಂದ ಅಗಲ ಮತ್ತು ಎತ್ತರದ ಉಪಯುಕ್ತತೆಗಳನ್ನು ರಚಿಸಲಾಗಿದೆ _variables.scss
. 25%
, 50%
, 75%
ಮತ್ತು 100%
ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಬೆಂಬಲವನ್ನು ಒಳಗೊಂಡಿದೆ . ನೀವು ಇಲ್ಲಿ ವಿಭಿನ್ನ ಉಪಯುಕ್ತತೆಗಳನ್ನು ರಚಿಸಬೇಕಾಗಿರುವುದರಿಂದ ಆ ಮೌಲ್ಯಗಳನ್ನು ಮಾರ್ಪಡಿಸಿ.
ಅಗಲ 25%
ಅಗಲ 50%
ಅಗಲ 75%
ಅಗಲ 100%
<div class="w-25 p-3" style="background-color: #eee;">Width 25%</div>
<div class="w-50 p-3" style="background-color: #eee;">Width 50%</div>
<div class="w-75 p-3" style="background-color: #eee;">Width 75%</div>
<div class="w-100 p-3" style="background-color: #eee;">Width 100%</div>
ಎತ್ತರ 25%
ಎತ್ತರ 50%
ಎತ್ತರ 75%
ಎತ್ತರ 100%
<div style="height: 100px; background-color: rgba(255,0,0,0.1);">
<div class="h-25 d-inline-block" style="width: 120px; background-color: rgba(0,0,255,.1)">Height 25%</div>
<div class="h-50 d-inline-block" style="width: 120px; background-color: rgba(0,0,255,.1)">Height 50%</div>
<div class="h-75 d-inline-block" style="width: 120px; background-color: rgba(0,0,255,.1)">Height 75%</div>
<div class="h-100 d-inline-block" style="width: 120px; background-color: rgba(0,0,255,.1)">Height 100%</div>
</div>
ಅಗತ್ಯವಿರುವಂತೆ ನೀವು ಬಳಸಬಹುದು max-width: 100%;
ಮತ್ತು max-height: 100%;
ಉಪಯುಕ್ತತೆಗಳನ್ನು ಸಹ ಮಾಡಬಹುದು.
<img class="mw-100" src="..." alt="Max-width 100%">
ಗರಿಷ್ಠ-ಎತ್ತರ 100%
<div style="height: 100px; background-color: rgba(255,0,0,0.1);">
<div class="mh-100" style="width: 100px; height: 200px; background-color: rgba(0,0,255,0.1);">Max-height 100%</div>
</div>