I'm experiencing an issue with a PNG image that I want to use as a border-image. The image is 10px x 1px in size, but when I try to use it, it only appears in the corners and doesn't repeat across the entire border. Can anyone help me figure out what I'm 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>