Here\'s a portion of my table (it\'s a form):
Those are just two I had the same issue but solved it by using where OR inline (yuk!) CSS {vertical-align: top;} or html Attribute {valign="top"} For table vertical-align we have 2 options. Just add vertical-align:top for first td alone needed not for all td. Try Set the line-height value to the desired value.\'s in a <
!important
. I forgot about the inheritance in CSS
. Just a tip to check first.td.description {vertical-align: top;}
description
is the class name of the td
with that text in ittd.description {
vertical-align: top;
}
<td class="description">Description</td>
<td style="vertical-align: top;">Description</td>
.table td,
.table th {
border: 1px solid #161b21;
text-align: left;
padding: 8px;
width: 250px;
height: 100px;
/* style for table */
}
.table-body-text {
vertical-align: top;
}
<table class="table">
<tr>
<th valign="top">Title 1</th>
<th valign="top">Title 2</th>
</tr>
<tr>
<td class="table-body-text">text</td>
<td class="table-body-text">text</td>
</tr>
</table>
valign="top"
should do the work.<tr>
<td valign="top">Description</td>
</tr>
tr>td:first-child {
vertical-align: top;
}
<tr>
<td>Description</td>
<td>more text</td>
</tr>
td.description {
line-height: 15px
}
<td class="description">Description</td>