Right now the star is at the bottom of the textarea. How to align the star in below html vertically to the middle of the textarea.
Here is the html
<table>
<tr>
<td valign="middle">
<textarea id="txtDescription"></textarea>
<span class="star">*</span>
</td>
</tr>
</table>
And the style
.star
{
color: #ff0000;
margin: 0 0 0 5px;
}
Here is the demo
Create a new <td>
and add there star:
html
<table>
<tr>
<td valign="middle">
<textarea id="txtDescription"></textarea>
</td>
<td>
<span class="star">*</span>
</td>
</tr>
</table>
fiddle
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With