Lid |
|
Alles is mij tot nu toe gelukt maar nu krijg ik mijn website niet meer gecentreerd.
Weet iemand waarom?
Mijn html code.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Socializ - Home</title>
<link rel="stylesheet" href="Css sz.css" type="text/css" />
</head>
<body>
<div id="content">
<div id="uitschuif">
</div>
<div id="page">
<div id="werkblad">
<!------------------------Werkblad------------------>
<p> Hier staat normaal een heleboel informatie maar dit is
weggelaten voor de vraag te stellen op sitemasters.be.
</p>
</div>
<br /><br />
</div>
</div>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <link rel="stylesheet" href="Css sz.css" type="text/css" /> <!------------------------Werkblad------------------> <p> Hier staat normaal een heleboel informatie maar dit is weggelaten voor de vraag te stellen op sitemasters.be.
Mijn css code.
@charset "utf-8";
/* CSS Document */
body{
background: -moz-linear-gradient(top, #CFFB5B, #E0FA9A)fixed;
background: -webkit-gradient(linear, left top, left bottom, from(#CFFB5B), to(#E0fA9A))fixed;
filter: progid:DXImageTransform.Microsoft.Gradient(
StartColorStr='#CFFB5B', EndColorStr='#E0FA9A', GradientType=1);
/*background-color:#CEE680;*/
}
#content{
position:absolute;
height:auto;
width: 936px;
left:50%;
margin-left:-450px;
padding:0;
margin: 0;
}
#uitschuif{
background-color:#99FF00;
position:absolute;
top: 100px;
left: 1px;
float: left;
z-index: 2;
width: 30px;
height: 500px;
border: 1px solid #000;
margin: 0;
}
#page{
position:absolute;
float: right;
right: 1px;
z-index: 2;
background-color: #eeeefc;
width: 900px;
height: auto;
border: 2px solid #000;
margin:0px;
}
#werkblad{
z-index: 3;
background-color: #f0f0f0;
width: 652px;
border-bottom: 12px;
padding-bottom: 6px;
padding: 8px;
padding-top: 6px;
position: relative;
margin-left: 210px;
margin-right: 40px;
margin-top: 100px;
margin-bottom: 20px;
min-height: 450px;
border: 1px solid #999;
}
@charset "utf-8"; /* CSS Document */ body{ background: -moz-linear-gradient(top, #CFFB5B, #E0FA9A)fixed; background: -webkit-gradient(linear, left top, left bottom, from(#CFFB5B), to(#E0fA9A))fixed; filter: progid:DXImageTransform.Microsoft.Gradient( StartColorStr='#CFFB5B', EndColorStr='#E0FA9A', GradientType=1); /*background-color:#CEE680;*/ } #content{ position:absolute; height:auto; width: 936px; left:50%; margin-left:-450px; padding:0; margin: 0; } #uitschuif{ background-color:#99FF00; position:absolute; top: 100px; left: 1px; float: left; z-index: 2; width: 30px; height: 500px; border: 1px solid #000; margin: 0; } #page{ position:absolute; float: right; right: 1px; z-index: 2; background-color: #eeeefc; width: 900px; height: auto; border: 2px solid #000; margin:0px; } #werkblad{ z-index: 3; background-color: #f0f0f0; width: 652px; border-bottom: 12px; padding-bottom: 6px; padding: 8px; padding-top: 6px; position: relative; margin-left: 210px; margin-right: 40px; margin-top: 100px; margin-bottom: 20px; min-height: 450px; border: 1px solid #999; }
Ik hoop dat jullie iets zien en als jullie nog andere fouten zien in mijn code mag je die natuurlijk ook posten.
Alvast bedankt,
Html_user |