Source

సైజింగ్

మా వెడల్పు మరియు ఎత్తు ప్రయోజనాలతో ఒక మూలకాన్ని సులభంగా వెడల్పుగా లేదా పొడవుగా (దాని పేరెంట్‌కి సంబంధించి) చేయండి.

$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%;యుటిలిటీలను కూడా ఉపయోగించవచ్చు.

గరిష్ట వెడల్పు = 100% [1000%x100]
<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>