Advertisement
jboive

How do I get this to work in IE7 Standards mode?

Jul 19th, 2013
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5.     <style>
  6.         div{
  7.             display: none!important;
  8.         }
  9.         div[style="display: inline;"]{
  10.             display: inline!important;
  11.         }
  12.     </style>
  13. </head>
  14. <body>
  15.     <div style="display: inline;">You should see me!</div>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement