I have a PNG which is 10px x 1px and I need to use it for a border-image but for some reason the image doesn't repeat. It appears in the corners but not all the way? What am I doing wrong?
#border {
width: 200px;
height: 100px;
border: 1px dashed transparent;
border-image: url(https://image.ibb.co/byABRJ/border.png) 1 100% repeat;
background: yellow;
text-align: center;
line-height: 100px;
}
<div id="border">
bordered area
</div>