in English
సైజింగ్
మా వెడల్పు మరియు ఎత్తు వినియోగాలతో సులభంగా ఒక మూలకాన్ని వెడల్పుగా లేదా పొడవుగా చేయండి.
ఈ పేజీలో
తల్లిదండ్రులకు బంధువు
లో యుటిలిటీ API నుండి వెడల్పు మరియు ఎత్తు యుటిలిటీలు రూపొందించబడ్డాయి _utilities.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,.1);">
<div class="mh-100" style="width: 100px; height: 200px; background-color: rgba(0,0,255,.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>
సాస్
యుటిలిటీస్ API
సైజింగ్ యుటిలిటీలు మా యుటిలిటీస్ APIలో ప్రకటించబడ్డాయి scss/_utilities.scss
. యుటిలిటీస్ APIని ఎలా ఉపయోగించాలో తెలుసుకోండి.
"width": (
property: width,
class: w,
values: (
25: 25%,
50: 50%,
75: 75%,
100: 100%,
auto: auto
)
),
"max-width": (
property: max-width,
class: mw,
values: (100: 100%)
),
"viewport-width": (
property: width,
class: vw,
values: (100: 100vw)
),
"min-viewport-width": (
property: min-width,
class: min-vw,
values: (100: 100vw)
),
"height": (
property: height,
class: h,
values: (
25: 25%,
50: 50%,
75: 75%,
100: 100%,
auto: auto
)
),
"max-height": (
property: max-height,
class: mh,
values: (100: 100%)
),
"viewport-height": (
property: height,
class: vh,
values: (100: 100vh)
),
"min-viewport-height": (
property: min-height,
class: min-vh,
values: (100: 100vh)
),