செங்குத்து சீரமைப்பு
இன்லைன், இன்லைன்-பிளாக், இன்லைன்-டேபிள் மற்றும் டேபிள் செல் உறுப்புகளின் செங்குத்து சீரமைப்பை எளிதாக மாற்றவும்.
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>