މައިގަނޑު ކޮންޓެންޓަށް ސްކިޕް ކުރާށެވެ ޑޮކްސް ނެވިގޭޝަނަށް ސްކިޕް ކުރާށެވެ
Check
in English

ސައިޒް ކުރުން

އަޅުގަނޑުމެންގެ ފުޅާމިނާއި އުސްމިނުގެ ޔުޓިލިޓީސް އާއި އެކު ފަސޭހައިން އެލިމެންޓެއް އެހާ ފުޅާ ނުވަތަ އެހާ އުސްކޮށް ހަދާށެވެ.

ބެލެނިވެރިޔާއާ ނިސްބަތްވާ މީހެކެވެ

ފުޅާމިނާއި އުސްމިން ޔުޓިލިޓީސް އުފައްދަނީ ޔުޓިލިޓީ އެޕީއައި އިން _utilities.scss. 25%, 50%, 75%, 100%, އަދި autoޑިފޯލްޓްކޮށް ސަޕޯޓް ކުރުން ހިމެނެއެވެ . މިތަނުގައި ތަފާތު ޔުޓިލިޓީތައް އުފައްދަން ބޭނުންވާ ގޮތަށް އެ އަގުތައް ބަދަލުކުރައްވާށެވެ.

ފުޅާމިން %25
ފުޅާމިން 50%
ފުޅާމިން 75%
ފުޅާމިން 100%
ފުޅާމިން އޮޓޯ
html އެވެ
<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%
ހައިޓް އޮޓޯ
html އެވެ
<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%
html އެވެ
<img src="..." class="mw-100" alt="...">
މެކްސް-ހައިޓް 100%
html އެވެ
<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)
    ),