the content for a page i am building begins and ends with two gifs. these gifs are as wide as the content, not very tall, and are there to create rounded corners. the page displays correctly in everything except for ie (only tested on pc so far). in ie, i get extra space above and bellow the gifs, which means they don't meet the content. to try and track this error down, i created this page
you could use anything for the gif. if you view this page in firefox, the two gifs will meet. if you view it in ie, there will be space between them.
how can i remove the space in ie, without hurting firefox?
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>a page</title>
</head>
<body>
<img src="myPic.gif" width="740" height="4" />
<img src="myPic.gif" width="740" height="4" />
</body>
</html>
you could use anything for the gif. if you view this page in firefox, the two gifs will meet. if you view it in ie, there will be space between them.
how can i remove the space in ie, without hurting firefox?