Answers for "how to center text in a td html"

3

css center in td

td 
{
    text-align: center; 
    vertical-align: middle;
}
Posted by: Guest on August-10-2020
0

html table td right align

<td class='alnright'>text to be aligned to right</td>

<style>
    .alnright { text-align: right; }
</style>
Posted by: Guest on October-27-2021

Browse Popular Code Answers by Language