الفرق بين المراجعتين ل"Bootstrap/sizing"

من موسوعة حسوب
اذهب إلى التنقل اذهب إلى البحث
سطر 14: سطر 14:
 
   <div class="h-100 d-inline-block" style="width: 120px; background-color: rgba(0,0,255,.1)">الطول 100%</div>
 
   <div class="h-100 d-inline-block" style="width: 120px; background-color: rgba(0,0,255,.1)">الطول 100%</div>
 
</div>
 
</div>
</syntaxhighlight>يمكن كذلك استخدام الأداتيْن <code>max-width: 100%;‎</code> و<code>max-height: 100%;‎</code> حسب الحاجة.<syntaxhighlight lang="html">
+
</syntaxhighlight>يمكن كذلك استخدام الأداتيْن <code>[[CSS/max-width|max-width]]: 100%;‎</code> و<code>[[CSS/max-height|max-height]]: 100%;‎</code> حسب الحاجة.<syntaxhighlight lang="html">
 
<img class="mw-100" data-src="..." alt="Max-width 100%">
 
<img class="mw-100" data-src="..." alt="Max-width 100%">
 
</syntaxhighlight><syntaxhighlight lang="html">
 
</syntaxhighlight><syntaxhighlight lang="html">

مراجعة 02:38، 15 أبريل 2018

استخدم أدوات العرض والطول التي يوفّرها إطار العمل Bootstrap لجعل يأخذ كامل عرض أو طول العنصُر الذي يحويه.

تُولَّد أدوات العرض والطول من الجدول ‎$sizes في الملفّ ‎_variables.scss. تتضمَّن هذه الأدوات مبدئيًّا دعمَ القيّم 25%، و50%، و75% و100%. يمكن التعديل على القيّم في الجدول لتوليد أدوات جديدة.

<div class="w-25 p-3" style="background-color: #eee;">العرض 25%</div>
<div class="w-50 p-3" style="background-color: #eee;">العرض 50%</div>
<div class="w-75 p-3" style="background-color: #eee;">العرض 75%</div>
<div class="w-100 p-3" style="background-color: #eee;">العرض 100%</div>
<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)">الطول 25%</div>
  <div class="h-50 d-inline-block" style="width: 120px; background-color: rgba(0,0,255,.1)">الطول 50%</div>
  <div class="h-75 d-inline-block" style="width: 120px; background-color: rgba(0,0,255,.1)">الطول 75%</div>
  <div class="h-100 d-inline-block" style="width: 120px; background-color: rgba(0,0,255,.1)">الطول 100%</div>
</div>

يمكن كذلك استخدام الأداتيْن max-width: 100%;‎ وmax-height: 100%;‎ حسب الحاجة.

<img class="mw-100" data-src="..." alt="Max-width 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>

مصادر