CSS IE7だけのハック

2010年07月07日(水)

なんだかアホらしいのでメモしたくなかったのですが一応。

#test {
  position:absolude;
  top:50px;
}
*:first-child+html #test {
  /*IE7のみ適用される*/
  top:50px;

}