Search code examples
fontshtml-tablehtml-email

text-align = center not working


I am practising html email and trying to center text. but its not working. also I have a doubt this is not working because I am using style tag inside of the font tag. I have tested my code in validator.w3.org and its passed. Is anything wrong with this code. Please help me to align text to center.

Doctype is : <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<tr>
  <td>
    <font style="font-family: verdana; font-size:10px; font-weight: bold; text-align: right;"><i>
"We are such stuff as dream are made on, and our little life is rounded with a sleep"  William Shakespeare</i>
		</font>
  </td>
</tr>


Solution

  • That's your corrected code:

    <table width="100%">
    <tr>
      <td style="text-align: right;"> 
        <font style="font-family: verdana; font-size:10px; font-weight: bold;"><i>
    "We are such stuff as dream are made on, and our little life is rounded with a sleep"  William Shakespeare</i>
    		</font>
      </td>
    </tr>
    </table>