Guten Tag,
im IE wird ein Abstand zwischen zwei DIV-Containern angezeigt, wobei im Firefox dieser Abstand nicht vorhanden ist.
Ich möchte, dass die zwei DIV-Container im IE ohne Abstand angezeigt werden.
im IE wird ein Abstand zwischen zwei DIV-Containern angezeigt, wobei im Firefox dieser Abstand nicht vorhanden ist.
Ich möchte, dass die zwei DIV-Container im IE ohne Abstand angezeigt werden.
HTML:
<div id="page_margins">
<div id="header">
<div id="logo">
<img src="images/logo.gif" width="149" height="71" alt="logo">
</div>
<div id="faces">
<img src="images/faces.gif" width="433" height="71" alt="faces">
</div>
<div id="loginbox">
a
</div>
</div>
<div id="menu">
<img src="images/test.gif">
</div>
b
</div>
Code:
body {margin: 0;padding: 0; background: #fff;}
#page_margins {
width: 800px;
min-width: 800px;
max-width: 100 em;
margin-left: auto;
margin-right: auto;
}
#header {
float: left;
}
#logo {
float: left;
width: 165px;
text-align: center;
}
#faces {
float: left;
}
#loginbox {
float: left;
width: 199px;
}
#menu {
margin-left: 0;
margin-right: 0;
border-left: 0;
border-right: 0;
}