Double border joint

by Jools Chadwick

HTML

<div id="div">
</div>

CSS

#div{
    width:100px;
    height: 100px;
    border: solid black 1px;
    border-top: double black 3px;
    border-bottom: double black 3px;
}