વર્ટિકલ ગોઠવણી
ઇનલાઇન, ઇનલાઇન-બ્લોક, ઇનલાઇન-ટેબલ અને ટેબલ સેલ તત્વોની ઊભી ગોઠવણી સરળતાથી બદલો.
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>