Here is the fiddle: http://jsfiddle.net/3Ys2d/
CSS
div{
border: solid 3px blue;
border-left-color: red;
border-right-color: red;
width: 100px;
height: 50px;
}
I need the top border to completely overlap the left and right borders at the intersection. At the moment, they are at an angle showing part of both and intersections.
Is there any way to do this?
source
share