DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Benoit has posted 48 posts at DZone. View Full User Profile

Border-color: Transparent In Internet Explorer 6

09.17.2008
| 7071 views |
  • submit to reddit
        
<style type="text/css" media="screen">

div.my-test {
	width: 100%; height: 100px;
	border: 1px solid transparent;
}

</style>

<!--[if IE 6]>
<style type="text/css" media="screen">

div.my-test {
	border-color: pink;
	filter: chroma(color=pink);
}

</style>
<![endif]-->

<a href="http://www.ab-d.fr">Retour à la source: </a><a href="http://www.ab-d.fr/date/2008-09-17/">border: 1px solid transparent, border-color, Internet Explorer 6, css </a>