html - Align li to the left IE8 -


hello trying align li items left.

here code. have tried several solutions nothing seems work.

css:

ul {     list-style:none;padding:0 } 

html:

    <table  border="0" cellspacing="0" cellpadding="0">         <tr>       <td>        <ul>         <li>test</li>         <li>test</li>       </ul>            </td>       </tr>       </table> 

with chrome thery correctly aligned left . ho make alligne in ie 8 well?

thanks

css:

ul{margin:0;padding:0;list-style:none} 

this works. thanks


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -