Class: Align

About

Class Align is a class that can be used to set Text Alignment.



Class List

Class Description
w-left Align left (horizontal)
w-center Align center (horizontal)
w-right Align right (horizontal)
w-justify Justify (horizontal)
w-top Align top (vertical)
w-middle Align middle (vertical)
w-bottom Align bottom (vertical)

Note: Vertical alignment only works on certain elements. Vertical alignment is generally intended for use on th or td elements.



Usage

Add the class to the desired element.

      	
<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.
Have Question?