Double border joint
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;
}
<div id="div">
</div>
#div{
width:100px;
height: 100px;
border: solid black 1px;
border-top: double black 3px;
border-bottom: double black 3px;
}