hallo,
folgendes situation:
2 divs unter einander in einem div verschachtelt:
code:
darstellung im ie:
darstellung im mozilla:
wie bekomm ich diesen weissen abstand weg?
sicher ich könnte margin-bottom-2px; oder sowas schreiben, aber es wird dann ja auch nicht gleich im ie und mozilla angezeigt.
also wie bekomm ich die gleiche darstellung im ie und mozilla hin?
gruß
wolle
folgendes situation:
2 divs unter einander in einem div verschachtelt:
code:
Code:
<div class="middle">
<div class="menu_home">Home</div>
<div class="menu_ueber">Über uns</div>
</div>
Code:
div.middle {
text-align:left;
margin:0px auto;
width:766px;
height:300px;
background-color:#FFFFFF;
}
div.menu_home {
font-family: Arial;
font-size:11px;
background-image:url("../images/menu_normal.jpg");
background-repeat:no-repeat;
text-align:left;
width:183px;
height:23px;
margin-left:11px;
padding-left:30px;
padding-top:6px;
margin-bottom:0px;
}
div.menu_ueber {
font-family: Arial;
font-size:11px;
background-image:url("../images/menu_normal.jpg");
background-repeat:no-repeat;
text-align:left;
width:183px;
height:23px;
margin-top:0px;
margin-left:11px;
padding-left:30px;
padding-top:6px;
}
darstellung im ie:
darstellung im mozilla:
wie bekomm ich diesen weissen abstand weg?
sicher ich könnte margin-bottom-2px; oder sowas schreiben, aber es wird dann ja auch nicht gleich im ie und mozilla angezeigt.
also wie bekomm ich die gleiche darstellung im ie und mozilla hin?
gruß
wolle