Tentang
Class Align adalah class yang bisa digunakan untuk mengatur Rataan Text.
Daftar class
| Class | Keterangan |
|---|---|
| w-left | Rata kiri (horizontal) |
| w-center | Rata tengah (horizontal) |
| w-right | Rata kanan (horizontal) |
| w-justify | Rata kiri-kanan (horizontal) |
| w-top | Rata atas (vertikal) |
| w-middle | Rata tengah (vertikal) |
| w-bottom | Rata bawah (vertikal) |
Keterangan: Rataan Vertikal hanya berfungsi pada elemen tertentu saja. Rataan vertical umumnya diperuntukkan untuk penggunaan pada elemen th atau td.
Penggunaan
Tambahkan class pada elemen yang dikehendaki.
<table>
<tbody>
<tr>
<td class='w-top'>Lorem</td>
<td>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</td>
</tr>
<tr>
<td class='w-middle w-right'>Ipsum</td>
<td>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</td>
</tr>
</tbody>
</table>
| Lorem | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. |
| Ipsum | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. |