الفرق بين المراجعتين لصفحة: «Bootstrap/vertical align»
لا ملخص تعديل |
ط استبدال النص - '\[\[تصنيف:(.*)\]\]' ب'{{SUBPAGENAME}}' |
||
سطر 32: | سطر 32: | ||
== مصادر == | == مصادر == | ||
* [https://getbootstrap.com/docs/4.0/utilities/vertical-align/ صفحة Vertical alignment في توثيق Bootstrap]. | * [https://getbootstrap.com/docs/4.0/utilities/vertical-align/ صفحة Vertical alignment في توثيق Bootstrap]. | ||
[[تصنيف:Bootstrap]] | [[تصنيف:Bootstrap|{{SUBPAGENAME}}]] | ||
[[تصنيف:Bootstrap utilities]] | [[تصنيف:Bootstrap utilities|{{SUBPAGENAME}}]] |
مراجعة 13:16، 7 مايو 2018
غيِّر محاذاة العناصر ذات القيم inline
و inline-block
و inline-table
للخاصية display
، وخلايا الجداول باستخدام أدوات المحاذاة العموديّة (vertical-align
). يُرجَى ملاحظة أنّ المحاذاة العموديّة تؤثّر فقط على العناصر ذات الخاصيّات inline
، وinline-block
و inline-table
، وخلايا الجداول.
اختر بين الأصناف .align-baseline
، و.align-top
، و.align-middle
، و.align-bottom
، و.align-text-bottom
و.align-text-top
حسب الحاجة.
- محاذاة عناصر سطريّة:
<span class="align-baseline">align-baseline</span>
<span class="align-top">align-top</span>
<span class="align-middle">align-middle</span>
<span class="align-bottom">align-bottom</span>
<span class="align-text-top">align-text-top</span>
<span class="align-text-bottom">align-text-bottom</span>
- محاذاة خلايا جدول:
<table style="height: 100px;">
<tbody>
<tr>
<td class="align-baseline">align-baseline</td>
<td class="align-top">align-top</td>
<td class="align-middle">align-middle</td>
<td class="align-bottom">align-bottom</td>
<td class="align-text-top">align-text-top</td>
<td class="align-text-bottom">align-text-bottom</td>
</tr>
</tbody>
</table>