Vertical alignment

    Change the alignment of elements with the utilities. Please note that vertical-align only affects inline, inline-block, inline-table, and table cell elements.

    With inline elements:

    With table cells:

    1. <table style="height: 100px;">
    2. <tbody>
    3. <tr>
    4. <td class="align-top">top</td>
    5. <td class="align-bottom">bottom</td>
    6. <td class="align-text-bottom">text-bottom</td>
    7. </tr>
    8. </tbody>