Menu / margin problem i IE?
Jeg har en lavet en menu hvor jeg over og under selve knapperne har en strej som er lavet som en div med en margin på 0, men alligevel laver den en margin på ca. 4px.Hvorfor gør den det?
DIV KODEN:::::::::::::::::::::::::::::::::::::::::::::::::::::::::
<div id="menu_wrapper">
<div id="rod_bg_top"></div>
<div id="menu">
<ul id="list">
<li><img src="images/menu/logo.jpg" alt="" /></li>
<li><img src="images/menu/mellem_strej.jpg" alt="" /></li>
<li><a href="index.php?side=forside" class="menu_link"><img src="images/menu/hjem.jpg" alt="Hjem" /></a></li>
<li><img src="images/menu/mellem_strej.jpg" alt="" /></li>
<li><a href="index.php?side=bygauto" class="menu_link"><img src="images/menu/byg_auto.jpg" alt="Bygning Automatik" /></a></li>
<li><img src="images/menu/mellem_strej.jpg" alt="" /></li>
<li><a href="index.php?side=info" class="menu_link"><img src="images/menu/info.jpg" alt="Infomation" /></a></li>
<li><img src="images/menu/mellem_strej.jpg" alt="" /></li>
<li><a href="index.php?side=brochure" class="menu_link"><img src="images/menu/brochure.jpg" alt="Brochure" /></a></li>
<li><img src="images/menu/mellem_strej.jpg" alt="" /></li>
</ul>
</div>
<div id="rod_bg_bund"></div>
<div id="dato_bund_div">
<img id="conor" src="images/menu/conor.gif" alt="" />
<div id="dato">
<?php
//Datoen paa siden!
setlocale(LC_ALL, 'danish') ;
echo ucfirst(strftime('%A, %d. '));
echo ucfirst(strftime('%B %Y'));
?>
</div>
</div>
</div>
CSS:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
@charset "utf-8";
/* Menu */
div#menu_wrapper{
height:105px;
padding:0;
}
div#rod_bg_top{
background-image:url(../images/menu/rod_top.gif);
background-repeat:repeat-x;
width:100%;
height:7px;
margin:11px 0 0 0;
}
div#rod_bg_bund{
background-image:url(../images/menu/rod_bund.gif);
background-repeat:repeat-x;
width:100%;
height:7px;
margin:0 0 0 0;
}
div#menu{
background-image:url(../images/menu/baggrund.jpg);
background-repeat:repeat-x;
margin:0 0 0 0;
width:100%;
padding:0 0 0 0;
}
ul#list{
margin:0 0 0 0;
padding:0 0 0 50px;
height:60px;
width:760px;
}
ul#list li{
list-style:none;
margin:0 0 0 0;
padding:0 0 0 0;
float:left;
}
a.menu_link img{
margin:0 0 0 0;
border:0;
}
a.menu_link{
cursor:pointer;
width:102px;
height:60px;
margin:0 0 0 0;
}
img#conor{
margin:0;
height:21px;
width:23px;
}
div#dato_bund_div{
margin-top:0;
margin-bottom:0;
height:21px;
float:right;
width:40%;
background-color:#cc3333;
}
div#dato{
color:#FFFFFF;
font-size:0.8em;
display:block;
position:absolute;
margin-left:40px;
top:83px;
}
På forhånd tak
