উলম্ব প্ৰান্তিককৰণ
ইনলাইন, ইনলাইন-ব্লক, ইনলাইন-টেবুল, আৰু টেবুল কোষ উপাদানসমূহৰ উলম্ব প্ৰান্তিককৰণ সহজে সলনি কৰক।
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>