in English

ऊर्ध्वाधर संरेखण

इनलाइन, इनलाइन-ब्लॉक, इनलाइन-टेबल और टेबल सेल तत्वों के लंबवत संरेखण को आसानी से बदलें।

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>