Source

การจัดตำแหน่งแนวตั้ง

เปลี่ยนการจัดแนวแนวตั้งขององค์ประกอบอินไลน์ อินไลน์บล็อก อินไลน์ตาราง และเซลล์ตารางได้อย่างง่ายดาย

เปลี่ยนการจัดตำแหน่งขององค์ประกอบด้วยvertical-alignmentยูทิลิตี้ โปรดทราบว่าการจัดแนวแนวตั้งจะมีผลกับองค์ประกอบแบบอินไลน์ อินไลน์บล็อก อินไลน์ตาราง และเซลล์ตารางเท่านั้น

เลือกจาก.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>