I'm creating a "lightbulb chain" using the dotted border, but when I make the left and bottom border transparent, it leaves me with these "half-dots", which kills the illusion.
Is there anyway to do this without the dots being cut in half?
.chain {
height: 300px;
width: 50px;
border: 5px dotted black;
border-color: #000 #000 transparent transparent;
}
<div class="chain"></div>