Hi when I wrap my image with a anchor the image itself becomes really small. I have the image inside of a figure and I am using flex-box, I am not really sure how to keep the image size from changing.
.foo{
display:flex;
flex-direction:row;
justify-content:space-around;
}
<figure class="foo">
<a href="#"><img src="#"></a>
<a href="#"><img src="#"></a>
<a href="#"><img src="#"></a>
</figure>