Simple questiong regarding styling of <hr/> tag
I am using a hr tag on our page but it looks weird in
IE9 http://img580.imageshack.us/img580/12开发者_如何转开发95/unleddlz.png
Notice the left-hand-side
CSS is
.greyLine {color: rgb(252,252,252); height: 1px; background-color: rgb(252,252,252);}
What's wrong here?
Thanks in advance.
.greyLine
{
border: none;
border-top: 1px solid rgb(252,252,253);
}
.greyLine {
height: 1px;
color: rgb(252,252,252);
background-color: rgb(252,252,252);
border: none;
}
You had it right, just needed to remove the border. Doing it your way plus border:none allows you to change the height if needed. Good luck. Source: How To Style HR with CSS
精彩评论