ich komme gerade überhaupt nicht weiter, mein Problem:
<right (10 x 40)> <center (auto x 40)> <right (10 x 40)>
<right (10 x auto)> <center (auto x auto)> <right (10 x auto)>
<right (10 x 5)> <center (auto x 5)> <right (10 x 5)>
..das wären in einer einfachen Tabelle 3 Zeilen + 3 Spalten.
Zwischen der ersten und der zweiten "Zeile" haut er mir immer wieder einen Zwischenraum, genau wie zwischen der zweiten und der dritten, der dort aber nicht sein soll
Vielleicht kann mir jemand von Euch dabei helfen.
Es geht darum das ich für jedes einen bestimmten BG habe und dieser so natürlich nicht hinhaut.
Hab ich da nur einen Denkfehler?
CSS
- Code: Alles auswählen
div#newsbox_top {
margin: 0px;
padding: 0px;
}
div#newsbox_bg_top_one {
float: left;
width: 10px;
height: 40px;
background:#0000FF;
}
div#newsbox_bg_top_three {
float: right;
width: 10px;
height: 40px;
background:#0066FF;
}
div#newsbox_bg_top_two {
margin: 0px 10px 5px 10px;
height: 40px;
background:#3366FF;
}
div#newsbox_mid {
margin: 0px;
padding: 0px;
height: auto;
}
div#newsbox_mid_one {
float: left;
width: 10px;
height: auto;
background:#990000;
}
div#newsbox_mid_three {
float: right;
width: 10px;
height: auto;
background:#CC0000;
}
div#newsbox_mid_two {
margin: 0px 10px 0px 10px;
height: auto;
background:#FF3300;
}
div#newsbox_bot {
margin: 0px;
padding: 0px;
}
div#newsbox_bot_one {
float: left;
width: 10px;
height: 5px;;
background:#006600;
}
div#newsbox_bot_three {
float: right;
width: 10px;
height: 5px;;
background:#00CC00;
}
div#newsbox_bot_two {
margin: 0px 10px 0px 10px;
height: 5px;;
background:#33CC66;
}
Html
- Code: Alles auswählen
<div id="newsbox_top">
<div id="newsbox_bg_top_one"></div>
<div id="newsbox_bg_top_three"></div>
<div id="newsbox_bg_top_two"></div>
</div>
<div id="newsbox_mid">
<div id="newsbox_mid_one"> </div>
<div id="newsbox_mid_three"> </div>
<div id="newsbox_mid_two">
<p>Test</p>
<p>Test</p>
<p>Test</p>
<p>Test</p>
</div>
</div>
<div id="newsbox_bot">
<div id="newsbox_bot_one"></div>
<div id="newsbox_bot_three"></div>
<div id="newsbox_bot_two"></div>
</div>
zur Ansicht:
http://flirtpage2000.de/MausTest/testsite.html

