I'm trying to make the upper border of div
totally overlap the top edge of the right edge, but I'm not succeeding.
html
<div class="caixa"></div>
css
.caixa{
width:100px;
height:100px;
border-top:14px solid red;
border-right:14px solid blue;
}
See in the example below that the borders in the upper right corner of the div lie diagonally, I would like the top border to completely cover the top right corner.