For some reason there's some margin visible below each of the image links. How do I remove it? It's only visible in FF, in IE it shows without the margins.
HTML:
CSS:HTML Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Site</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body> <a href="#"><img src="image1.jpg" /></a><br /> <a href="#"><img src="image2.jpg" /></a><br /> <a href="#"><img src="image3.jpg" /></a> </body> </html>
Code:html, body { width: 100%; height: 100%; margin: 0; padding: 0; background-color: #FFFFFF; } img { margin: 0; padding: 0; border: 0; }




You don't believe me the margins are there? Just copy-paste the code and view it in FF.

Bookmarks