मुख्य सामग्री पर जाउ डॉक्स नेविगेशन पर जाउ
Check
in English

साइजिंग

आसानी स अपन चौड़ाई आ ऊंचाई उपयोगिता स कोनो तत्व के ओतबे चौड़ा या ओतबे ऊँच बनाउ।

माता-पिता के सापेक्ष

चौड़ाई आ ऊंचाई उपयोगिता उपयोगिता एपीआई स उत्पन्न कएल गेल अछि _utilities.scss. 25%, 50%, 75%, 100%, आओर autoपूर्वनिर्धारित रूप सँ समर्थन शामिल अछि. ओहि मान केँ संशोधित करू जेना अहाँ केँ एतय अलग-अलग उपयोगिता उत्पन्न करबाक आवश्यकता अछि.

चौड़ाई 25% 1।
चौड़ाई 50% 1।
चौड़ाई 75% 1।
चौड़ाई 100% 1।
चौड़ाई ऑटो
एचटीएमएल
<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>
ऊँचाई २५% २.
ऊँचाई ५०% २.
ऊँचाई ७५% २.
ऊंचाई 100% 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%;

Placeholder Max-width 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>

सस्स

उपयोगिता एपीआई

आकार उपयोगिता हमर उपयोगिता एपीआई मे घोषित कएल गेल अछि scss/_utilities.scss. उपयोगिता एपीआई क उपयोग करब सीखू।

    "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)
    ),