Your Ad Here

Posted By

Sullan on 06/16/11


Tagged


Versions (?)

Browser Hacks


 / Published in: HTML
 

Browser Hacks

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <meta charset="utf-8" />
  4. <style type="text/css">
  5. body {
  6. background:#565656;
  7. *background:#fff; /* IE 6 and 7 (Should come first) */
  8. _background:#fff; /* IE 6 only */
  9. background: blue\0/; /* IE 8 only Hack */
  10. }
  11. /* For IE 9 */
  12. :root #bodyframe { min-height:100px; \0/IE9; } /* IE9 */
  13.  
  14. /* Only for chrome and safari */
  15. body:nth-of-type(1) #bodyframe {
  16. background:red;
  17. }
  18. Test
  19. <div id="bodyframe">asdfasd</div>
  20. </body>
  21. </html>

Report this snippet  

You need to login to post a comment.