Hi I have a div which has differently colored borders, and one thing I happened to notice is that border-left and border-right get drawn over border-top.
The sample html is just:
<div class="my_class"></div>
With CSS:
div {
height: 100px;
width: 100px;
border: thin solid;
border-top: thick solid;
border-color: #eeeeee;
border-top-color: #123456;
}
This is an example of what I'm talking about: http://jsfiddle.net/nsVca/1/
Both the side borders overlap the top border. Is there a way to overrule this or to set the top border to draw over the side borders?