ലംബ വിന്യാസം
ഇൻലൈൻ, ഇൻലൈൻ-ബ്ലോക്ക്, ഇൻലൈൻ-ടേബിൾ, ടേബിൾ സെൽ ഘടകങ്ങൾ എന്നിവയുടെ ലംബ വിന്യാസം എളുപ്പത്തിൽ മാറ്റുക.
vertical-alignment
യൂട്ടിലിറ്റികളുമായുള്ള മൂലകങ്ങളുടെ വിന്യാസം മാറ്റുക . ഇൻലൈൻ, ഇൻലൈൻ-ബ്ലോക്ക്, ഇൻലൈൻ-ടേബിൾ, ടേബിൾ സെൽ ഘടകങ്ങൾ എന്നിവയെ മാത്രമേ ലംബ-അലൈൻ ബാധിക്കുകയുള്ളൂ എന്നത് ശ്രദ്ധിക്കുക.
.align-baseline
, .align-top
, .align-middle
, .align-bottom
, .align-text-bottom
, എന്നിവയിൽ .align-text-top
നിന്നും ആവശ്യാനുസരണം തിരഞ്ഞെടുക്കുക .
ഇൻലൈൻ ഇതര ഉള്ളടക്കം ലംബമായി കേന്ദ്രീകരിക്കാൻ ( <div>
ഉം മറ്റും പോലുള്ളവ), ഞങ്ങളുടെ ഫ്ലെക്സ് ബോക്സ് യൂട്ടിലിറ്റികൾ ഉപയോഗിക്കുക .
ഇൻലൈൻ ഘടകങ്ങൾക്കൊപ്പം:
<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
ലംബമായ അലൈൻ യൂട്ടിലിറ്റികൾ ഞങ്ങളുടെ യൂട്ടിലിറ്റി API-ൽ പ്രഖ്യാപിച്ചിരിക്കുന്നു scss/_utilities.scss
. യൂട്ടിലിറ്റീസ് API എങ്ങനെ ഉപയോഗിക്കാമെന്ന് മനസിലാക്കുക.
"align": (
property: vertical-align,
class: align,
values: baseline top middle bottom text-bottom text-top
),