horizontal line css problem with ie 9 , <hr /> color style not work in ie 9
why the below html code d开发者_StackOverflow社区oes not work in ie 9:
<hr style="color:red;"/>
how can i fix this ?
Try this...
<hr style="background: red; border: none; height: 5px;" />
jsFiddle.
精彩评论