Hi,
Well, Try this, although it only works on IE since it has a broken-box model, you'd have to work around it for Firefox. I think you could also fix it by adding a background pattern (with a an image that has the 1px blue line, it can be a 1x1 px image) and then add the css that would be something like this:
HTML Code:
.div2{
background: #fff url(blue_1px.gif) bottom left repeat-x;
border-bottom: none;
}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style>
body{background-color:#000;}
.div2{
border-top:1px solid #f45;
border-right:1px solid #f45;
border-left:1px solid #f45;
background-color:#fff;
height:100px;
width:100px;
}
.div1 {
width: 101px;
border-left: 1px solid black;
border-bottom: 1px solid #14f;
}
</style>
</head>
<body>
<div class="div1">
<div class=div2>Overlapping Corners Small</div>
</div>
</body>
</html>
Bookmarks