I need the border to be applied to the a tag but when I do this the border doesn't wrap around the image how can I make this happen?
<div>
<a href="#">
<img src="https://cdn.pixabay.com/photo/2015/04/23/17/41/javascript-736400_960_720.png">
</a>
</div>
css:
a{
border: 5px solid blue;
}