Why is the picture element bigger than the image element? (The red line at the bottom of the sample) - chrome 88. How can I prevent that?
picture{
background-color: red;
}
img{
width:100%;
height: auto;
}
<picture>
<source srcset="https://i.stack.imgur.com/WeyM8.jpg" media="all">
<img src="">
</picture>