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

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.30 KB  |  hits: 14  |  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. Support of :after in IE7
  2. .myclass:after {
  3.    content:"";
  4.    display:table;
  5.    width:100px;
  6.    height:100px;
  7.    background:#f7f7f7;
  8.    position:absolute;
  9.    top:0;
  10.    left:-1px;
  11.    z-index:0; }
  12. .myclass > div {
  13.    position:relative;
  14.    z-index:10; }  
  15. .myclass {
  16.    z-index:1;
  17.    position:relative; }