Another CSS autoclear


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



Copy this code and paste it in your HTML
  1. .container:after {
  2. content: “.”;
  3. display: block;
  4. height: 0;
  5. clear: both;
  6. visibility: hidden;
  7. }
  8.  
  9. .container {display: inline-table;}
  10. /* Hides from IE-mac \*/
  11. * html .container {height: 1%;}
  12. .container {display: block;}
  13. /* End hide from IE-mac */

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.