ie.css 536 B

12345678910111213141516171819202122232425
  1. /*
  2. Title: IE patches
  3. Author: jordancooperman@gmail.com, based on Dan Cederholm's ie
  4. CSS, from the book: "Handcrafted CSS".
  5. */
  6. /* PNG fix */
  7. *html #selector { /* for IE<6 */
  8. filter: progid:DXImageTransform.Microsoft.
  9. AlphaImageLoader(enabled=true, sizingMethod=scale
  10. src='img/image.png'); background-image: none; background-
  11. repeat: no-repeat; background-color: transparent;
  12. }
  13. /* self-clear floats */
  14. *html .group { /* IE6 */
  15. height: 1%;
  16. }
  17. *:first-child+html .group { /* IE7 */
  18. min-height: 1px;
  19. }