O
owned13909
Hallo liebe tutorials.de Community,
ich habe ein kleines Problem mit meiner Html Seite, und zwar sind die 4 hellblauen Balken nicht alle nebeneinander eingereiht (siehe bild).
Bild
Hier der quelltext:
ich habe ein kleines Problem mit meiner Html Seite, und zwar sind die 4 hellblauen Balken nicht alle nebeneinander eingereiht (siehe bild).
Bild
Hier der quelltext:
Code:
<div id="cat_container">
<div id="cat_body">
<div id="cat_head"></div>
<div id="cat_head_forum_info"></div><div id="cat_head_toprep_info"></div><div id="cat_head_toprep_info"></div><div id="cat_head_lastpost_info"></div><div id="clear"
</div>
</div>
Code:
body{
padding:0px;
margin:0px;
}
#cat_container{
position:absolute;
width:100%;
}
#cat_body{
position:relative;
width:auto;
margin-left:20px;
margin-right:20px;
border:1px solid #999;
padding:1px;
}
#cat_head{
height:32px;
width:100%;
background-color:#2f3b49;
}
#cat_head_forum_info{
height:29px;
background-color:#ced7e6;
width:66%;
float:left;
border-bottom:1px solid #9a9fa5;
border-right:1px dotted #9a9fa5;
}
#cat_head_toprep_info{
height:29px;
background-color:#ced7e6;
width:7%;
float:left;
border-bottom:1px solid #9a9fa5;
border-right:1px dotted #9a9fa5;
}
#cat_head_lastpost_info{
height:29px;
background-color:#ced7e6;
width:20%;
float:left;
border-bottom:1px solid #9a9fa5;
border-right:1px dotted #9a9fa5;
}
#clear{
clear:both;
width:0;
height:0;
}