In the following web page, there is a gap of a few pixels between the image and the div. (I've tested in Firefox 3 and Safari 4.)
How can I close the gap?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test Page</title>
<style type="text/css" media="screen">
body
{
background-color: black;
}
img
{
width: 250px;
height: 70px;
border: 0;
margin: 0;
padding: 0;
}
div
{
background-color: white;
border: 0;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<img alt="Stack Overflow Logo" src="http://is.gd/lEfE">
<div>text</div>
</body>
</html>