I have very very very simple html, normally everything in HTML seems to work as it should, but in this case, it doesn't. I would think that the size of an a tag should inherit a child image tag. But in the case below, the sizes are different.
html:
<a href="."><img src="some image"></a>
css:
a {
border: 1px solid #000;
width: auto;
height: auto;
}
img {
border: 1px solid #F00;
}
Why does the <a> not inherit the size of the image? (see: http://jsfiddle.net/49ykj/)
This occurs in both Firefox and Chrome so far, so I'm assuming it happens in all browsers. This is a bug? Why shouldn't it be a bug?