Moderator |
|
Maak een container voor je pagina, met hierin
een floatende div voor het linker gedeelte
een floatende div voor het rechter gedeelte
zet in je linker floatende div
een top-div
een bottom-div
Aldus:
container
left
left_top
left_bottom
right
container left left_top left_bottom right
code:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
html, body
{
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
#container
{
height: 100%;
width: 100%;
}
#left
{
float: left;
width: 50%;
height: 100%;
}
#left_top
{
width: 100%;
height: 50%;
background-color: #ffcc00;
}
#left_bottom
{
width: 100%;
height: 50%;
background-color: #00ff00;
}
#right
{
float: left;
width: 50%;
height: 100%;
background-color: #ff0000;
}
</style>
</head>
<body>
<div id="container">
<div id="left">
<div id="left_top">left top</div>
<div id="left_bottom">left bottom</div>
</div>
<div id="right">
right
</div>
</div>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> html, body { margin: 0; padding: 0; width: 100%; height: 100%; } #container { height: 100%; width: 100%; } #left { float: left; width: 50%; height: 100%; } #left_top { width: 100%; height: 50%; background-color: #ffcc00; } #left_bottom { width: 100%; height: 50%; background-color: #00ff00; } #right { float: left; width: 50%; height: 100%; background-color: #ff0000; } </style> </head> <body> <div id="container"> <div id="left"> <div id="left_top">left top</div> <div id="left_bottom">left bottom</div> </div> <div id="right"> right </div> </div> </body> </html>
|