in English
సైజింగ్
మా వెడల్పు మరియు ఎత్తు వినియోగాలతో సులభంగా ఒక మూలకాన్ని వెడల్పుగా లేదా పొడవుగా చేయండి.
తల్లిదండ్రులకు బంధువు
$sizes
లో సాస్ మ్యాప్ నుండి వెడల్పు మరియు ఎత్తు వినియోగాలు రూపొందించబడ్డాయి _variables.scss
. 25%
, 50%
, 75%
, 100%
మరియు auto
డిఫాల్ట్గా మద్దతును కలిగి ఉంటుంది. మీరు ఇక్కడ విభిన్న యుటిలిటీలను రూపొందించాల్సిన అవసరం ఉన్నందున ఆ విలువలను సవరించండి.
వెడల్పు 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>
<div class="w-auto p-3" style="background-color: #eee;">Width auto</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 class="h-auto d-inline-block" style="width: 120px; background-color: rgba(0,0,255,.1)">Height auto</div>
</div>
మీరు అవసరం max-width: 100%;
మరియు max-height: 100%;
యుటిలిటీలను కూడా ఉపయోగించవచ్చు.
<img src="..." class="mw-100" alt="...">
గరిష్ట-ఎత్తు 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>
వ్యూపోర్ట్కు సంబంధించి
వీక్షణపోర్ట్కు సంబంధించి వెడల్పు మరియు ఎత్తును సెట్ చేయడానికి మీరు యుటిలిటీలను కూడా ఉపయోగించవచ్చు.
<div class="min-vw-100">Min-width 100vw</div>
<div class="min-vh-100">Min-height 100vh</div>
<div class="vw-100">Width 100vw</div>
<div class="vh-100">Height 100vh</div>