الفرق بين المراجعتين لصفحة: «Bootstrap/vertical align»
ط استبدال النص - '\[\[تصنيف:(.*)\]\]' ب'{{SUBPAGENAME}}' |
لا ملخص تعديل |
||
سطر 5: | سطر 5: | ||
* محاذاة عناصر سطريّة: | * محاذاة عناصر سطريّة: | ||
<syntaxhighlight lang="html"> | <syntaxhighlight lang="html"> | ||
<span class="align-baseline"> | <span class="align-baseline">baseline</span> | ||
<span class="align-top"> | <span class="align-top">top</span> | ||
<span class="align-middle"> | <span class="align-middle">middle</span> | ||
<span class="align-bottom"> | <span class="align-bottom">bottom</span> | ||
<span class="align-text-top"> | <span class="align-text-top">text-top</span> | ||
<span class="align-text-bottom"> | <span class="align-text-bottom">text-bottom</span> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
* محاذاة خلايا جدول: | * محاذاة خلايا جدول: | ||
سطر 17: | سطر 17: | ||
<tbody> | <tbody> | ||
<tr> | <tr> | ||
<td class="align-baseline"> | <td class="align-baseline">baseline</td> | ||
<td class="align-top"> | <td class="align-top">top</td> | ||
<td class="align-middle"> | <td class="align-middle">middle</td> | ||
<td class="align-bottom"> | <td class="align-bottom">bottom</td> | ||
<td class="align-text-top"> | <td class="align-text-top">text-top</td> | ||
<td class="align-text-bottom"> | <td class="align-text-bottom">text-bottom</td> | ||
</tr> | </tr> | ||
</tbody> | </tbody> | ||
</table> | </table> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== مصادر == | == مصادر == | ||
* [https://getbootstrap.com/docs/4. | * [https://getbootstrap.com/docs/4.5/utilities/vertical-align/ صفحة Vertical alignment في توثيق Bootstrap]. | ||
[[تصنيف:Bootstrap|{{SUBPAGENAME}}]] | [[تصنيف:Bootstrap|{{SUBPAGENAME}}]] | ||
[[تصنيف:Bootstrap utilities|{{SUBPAGENAME}}]] | [[تصنيف:Bootstrap utilities|{{SUBPAGENAME}}]] |
المراجعة الحالية بتاريخ 13:06، 13 يوليو 2020
غيِّر محاذاة العناصر ذات القيم 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">baseline</span>
<span class="align-top">top</span>
<span class="align-middle">middle</span>
<span class="align-bottom">bottom</span>
<span class="align-text-top">text-top</span>
<span class="align-text-bottom">text-bottom</span>
- محاذاة خلايا جدول:
<table style="height: 100px;">
<tbody>
<tr>
<td class="align-baseline">baseline</td>
<td class="align-top">top</td>
<td class="align-middle">middle</td>
<td class="align-bottom">bottom</td>
<td class="align-text-top">text-top</td>
<td class="align-text-bottom">text-bottom</td>
</tr>
</tbody>
</table>