I am not able to center a text using following code. What mistake am I making ? and is there any better alternative ?
<html>
<body>
<table>
<tr ><td id="azone" colspan=3 style="border:1px solid black"><span style="border:1px solid black;background-color:green;margin:auto;" >Tense</span></td> </tr>
<tr > <td style="width:250px"></td> <td style="width:250px"></td> <td style="width:250px"> </td></tr>
<tr> <td></td> <td></td> <td> </td></tr>
</table>
</body>
</html>
Have you tried text-align: center (CSS)?
You can also use the <center> tags if you want. Though it is not recommended, as they are deprecated.