Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 16th, 2012  |  syntax: None  |  size: 0.47 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Background image doesn't appear on a specific page
  2. <div id="content">
  3.  
  4. ...
  5.  
  6. <div style="clear:both"></div>
  7. <!-- CONTENT END -->
  8. </div>
  9.        
  10. <div id="content" class="clearfix">
  11.  
  12. ...  
  13.  
  14. <!-- CONTENT END -->
  15. </div>
  16.        
  17. .clearfix:after {
  18.     content: ".";
  19.     display: block;
  20.     clear: both;
  21.     visibility: hidden;
  22.     line-height: 0;
  23.     height: 0;
  24. }
  25.  
  26. .clearfix {
  27.     display: inline-block;
  28. }
  29.  
  30. html[xmlns] .clearfix {
  31.     display: block;
  32. }
  33.  
  34. * html .clearfix {
  35.     height: 1%;
  36. }