মূল বিষয়বস্তুলৈ এৰি যাওক নথিপত্ৰ নেভিগেচনলৈ এৰি যাওক
in English

উলম্ব প্ৰান্তিককৰণ

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

vertical-alignmentসঁজুলিসমূহৰ সৈতে উপাদানসমূহৰ প্ৰান্তিককৰণ সলনি কৰক । অনুগ্ৰহ কৰি মন কৰক যে উলম্ব-প্ৰান্তিককৰণে কেৱল ইনলাইন, ইনলাইন-ব্লক, ইনলাইন-টেবুল, আৰু টেবুল কোষ উপাদানসমূহক প্ৰভাৱিত কৰে।

.align-baseline, .align-top, .align-middle, .align-bottom, .align-text-bottom, আৰু .align-text-topপ্ৰয়োজন অনুসৰি নিৰ্বাচন কৰক ।

নন-ইনলাইন বিষয়বস্তু উলম্বভাৱে কেন্দ্ৰ কৰিবলৈ (যেনে <div>s আৰু অধিক), আমাৰ ফ্লেক্স বাকচ সঁজুলিসমূহ ব্যৱহাৰ কৰক ।

ইনলাইন উপাদানসমূহৰ সৈতে:

ভিত্তিৰেখা ওপৰৰ মাজৰ তলৰ লিখনী-উপৰ লিখনী-তল
<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>

ছাছ

ইউটিলিটিজ এপিআই

উলম্ব প্ৰান্তিককৰণ সঁজুলিসমূহ আমাৰ সঁজুলিসমূহ API ত ঘোষণা কৰা হৈছে scss/_utilities.scss. সঁজুলি API কেনেকৈ ব্যৱহাৰ কৰিব লাগে শিকিব।

    "align": (
      property: vertical-align,
      class: align,
      values: baseline top middle bottom text-bottom text-top
    ),