IE6 & IE7 Table float override


/ Published in: CSS
Save to your folder(s)

Any table with an attribute of align="left" also applies float:left in older versions of IE, this fixes it.


Copy this code and paste it in your HTML
  1. table[align="left"] {
  2. float:none;
  3. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.