1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

HTML HTML Tables

Discussion in 'Web Development' started by navyfalcon, Feb 21, 2013.

  1. navyfalcon

    navyfalcon Well-Known Member Verified Member

    How can I make the words align left and the numbers align right ??
    Code:
    <table width="85%" border="0" cellpadding="5" cellspacing="2">
     
    <tr><td width="5%">1.</td><td>adwords</td><td>1584</td><td>search</td><td>179657</td></tr>
    <tr><td width="5%">2.</td><td>blog</td><td>5352</td><td>free</td><td>27713</td></tr>
    <tr><td width="5%">3.</td><td>blogging</td><td>97</td><td>target</td><td>16913</td></tr>
    <tr><td width="5%">4.</td><td>engine</td><td>5204</td><td>google search</td><td>10575</td></tr>
    <tr><td width="5%">5.</td><td>free</td><td> 27713</td><td>keyword</td><td>9778</td></tr>
    </table>
    
    -
    Thank You
    falcon
     
  2. navyfalcon

    navyfalcon Well-Known Member Verified Member

    found out: using <td align="left"> or <td align="right">
    is there a better way ??
    -
    falcon