hallo leute
bin das erste mal hier weil ich hilfe benötige
mein problem, ich habe eine schlichte html seite alles noch neu und daher leer also somit auch ohne fehler, bis auf eine sache,
ich habe mir über google vier div´s rausgesucht und wollte die bei mir in einen div container packen.
naja drinn ist der code ja aber irgendwie zerreisst es mir dadurch den zweiten content div was ich ja eigentlich als "wrapper" für die vier kleineren div´s nutze.
ich hoffe ich habe mein problem ordentlich beschrieben und wäre froh wenn mir da jemand bei helfen könnte.
ich gebe mal noch die html bzw css codes mit
mfg sudteam
HTML
HTML
<!DOCTYPE html><html><head><title>CSS Portal - Layout</title><!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--><link rel="stylesheet" type="text/css" href="css/style.css" /></head><body> <div id="wrapper"> <div id="headerwrap"> <div id="header"> <p>This is the Header</p> </div> </div> <div id="navigationwrap"> <div id="navigation"> <p>This is the Menu</p> </div> </div> <div id="contentwrap"> <div id="content"> <p> This is the Content 1 </p><hr /> </div> <div id="content2"> <p> This is the Content 2 </p> <div class="abox"> <p>ILorem ipsum dolor sit amet, consectetur adipiscing elit.Donec dictum semper felis, ac fringilla turpis tristique non. </p><div class="button"><a href="#">Read More</a> </div> </div> <div class="abox"> <p>ILorem ipsum dolor sit amet, consectetur adipiscing elit.Donec dictum semper felis, ac fringilla turpis tristique non. </p><div class="button"><a href="#">Read More</a> </div> </div> <div class="abox"> <p>ILorem ipsum dolor sit amet, consectetur adipiscing elit.Donec dictum semper felis, ac fringilla turpis tristique non. </p><div class="button"><a href="#">Read More</a></div> </div> <div class="abox"> <p>ILorem ipsum dolor sit amet, consectetur adipiscing elit.Donec dictum semper felis, ac fringilla turpis tristique non. </p><div class="button"><a href="#">Read More</a> </div> </div> </div> <div id="footerwrap"> <div id="footer"> <p>This is the Footer</p> <!-- <a class="tooltips" href="#">CSS Tooltips<span>Tooltip</span></a>--> </div> </div> </div> </div></body></html>
CSS
Code
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { margin:0;
padding:0;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
color: #333
}
p {
padding: 10px;
}
#wrapper {
margin: 0 auto;
width: 1000px;
}
#headerwrap {
width: 1000px;
float: left;
}
#header {
height: 200px;
background-image: url(../images/header.png);
clear: both;
}
#navigationwrap {
width: 1000px;
float: left;
margin: 0px auto;
}
#navigation {
width: 998px;
height: 50px;
background: #FFCC33;
-webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
border: 1px solid #ebb81f;
clear: both;
}
#contentwrap {
width: 1000px;
float: left;
margin: 10px auto;
}
#content {
width: 979px;
background: #FFFFFF;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-top: 1px solid #ebebeb;
border-left: 1px solid #ebebeb;
border-right: 1px solid #ebebeb;
border-bottom: 0px solid #ebebeb;
padding: 10px;
clear: both;
}
#content2 {
width: 979px;
background: #FFFFFF;
border-top: 0px solid #ebebeb;
border-left: 1px solid #ebebeb;
border-right: 1px solid #ebebeb;
border-bottom: 1px solid #ebebeb;
padding: 10px;
clear: both;
}
/* Beginn 4 Div´s */
.abox {
float: left;
width: 180px;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
text-align: left;
margin-top: 30px;
margin-left: 20px;
text-shadow: -1px 1px #C0C0C0;
background-image: url(../images/abox_sep.png);
background-repeat: no-repeat;
background-position: right;
padding-right: 20px;
background-attachment: scroll;
background-color: #F4F4F4;
padding-left: 10px;
padding-top: 10px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
-moz-box-shadow:0px 0px 2px #000000;
-webkit-box-shadow:0px 0px 2px #000000;
box-shadow:0px 0px 2px #000000;
padding-bottom: 5px;
}
/* Ende 4 Div´s */
#footerwrap {
width: 1000px;
float: left;
margin: 0 auto;
clear: both;
}
#footer {
width: 1000px;
height: 40px;
background: #33FF66;
-webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
border: 1px solid #1feb52;
margin: 0px;
}
/* Beginn ToolTips */
a.tooltips {
position: relative;
display: inline;
}
a.tooltips span {
position: absolute;
width: 140px;
color: #FFFFFF;
background: #000000;
height: 12px;
line-height: 12px;
text-align: center;
visibility: hidden;
border-radius: 8px;
}
a.tooltips span:after {
content: '';
position: absolute;
top: 100%;
left: 50%;
margin-left: -8px;
width: 0;
height: 0;
border-top: 8px solid #000000;
border-right: 8px solid transparent;
border-left: 8px solid transparent;
}
a:hover.tooltips span {
visibility: visible;
opacity: 0.8;
bottom: 30px;
left: 50%;
margin-left: -76px;
z-index: 999;
}
/* Ende ToolTips */
Alles anzeigen