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>