Nieuw lid |
|
Ik weet het, het is een vrij standaard vraag aan het worden. Maar ik heb na meer dan een half uur geneus op het internet/webmasters forum nog een werkende oplossing gevonden
tussen "header_container" en "border" zit in IE ruimte en in FF niet, zoals je ziet heb ik margin, padding, position, top.. alles geprobeerd wat ik aan oplossingen heb gelezen.. nothing
<div id="header_container">
<div id="header_left">
<img src="images/header_left.jpg" border="0">
</div>
<div id="header">
<img src="images/header.jpg" border="0">
</div>
<div id="header_right">
<img src="images/header_right.jpg" border="0">
</div>
</div>
<div id="border">
<img src="images/border.jpg" border="0">
</div>
<div id="header_container"> <img src="images/header_left.jpg" border="0"> <img src="images/header.jpg" border="0"> <img src="images/header_right.jpg" border="0"> <img src="images/border.jpg" border="0">
CSS:
#header_container {
width: auto;
height: 239px;
padding: 0px;
margin: 0px;
position: relative;
top: 0px;
}
#header_left {
width: 194px;
height: 239px;
float: left;
margin: 0px;
padding: 0px;
}
#header {
width: 284px;
height: 239px;
float: left;
margin: 0px;
padding: 0px;
}
#header_right {
width: 241px;
height: 239px;
margin: 0px;
float: left;
padding: 0px;
}
#border {
margin: 0px;
padding: 0px;
width: 719px;
height: 12px;
position: relative;
top: 0px;
}
#header_container { width: auto; height: 239px; padding: 0px; margin: 0px; position: relative; top: 0px; } #header_left { width: 194px; height: 239px; float: left; margin: 0px; padding: 0px; } #header { width: 284px; height: 239px; float: left; margin: 0px; padding: 0px; } #header_right { width: 241px; height: 239px; margin: 0px; float: left; padding: 0px; } #border { margin: 0px; padding: 0px; width: 719px; height: 12px; position: relative; top: 0px; }
|