Greetings, as I strive to create an image light website, I am interested in developing two-tone hr elements.
I have successfully implemented this feature in modern browsers, but now I aim to achieve the same effect in ie6 and 7.
The current code that I am utilizing is as follows:
hr {
border-bottom:1px solid #FFFFFF;
border-top:1px solid #dcdcdc;
clear:both;
height:0;
border-left:0px;
border-right:0px;
}
I have attempted, without success, to make this work in ie6 and 7 without explicitly targeting those browsers. Any suggestions?
(You can view my ongoing project where I am applying this code and seeking cross-browser compatibility here: )
Thank you
Matt