IE6 Issue - border-color:transparent not working
问题 style="border:solid 1px transparent" is not working in IE6 instead it shows a black border. How to solve this issue? 回答1: IE6 does not support a border that is transparent . With a quick search, I found this workaround: http://acidmartin.wordpress.com/2008/08/24/emulating-border-color-transparent-in-internet-explorer-6/ To put it to work with IE6, we will create another rule, that is visible only in version 6 (the *html hack) with just two lines of code: *html .testDiv { border-color: pink;