First the result in Firefox 4 Beta 8:
The former element shown is a button
with an img
the latter is a div
with an img
. As you can see in the former case there is some strange space between the border of the img
and the border of the button
. I wonder how I can remove it.
Here the CSS file:
* {
margin: 0;
padding: 0;
}
button, img, div {
border: 1px solid black;
}
img {
display: block;
}