Hi there,
Something like this, maybe?
HTML Code:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Four box layout</title>
<style>
.wrapper{ width:1000px; margin:0 auto; }
.boxRight{ width:750px; float:right; height:750px;background:yellow; }
.boxLeft{ width:250px; float:left; height:250px; }
.first{ background:red; }
.second{ background:blue; }
.third{ background:orange; }
</style>
</head>
<body>
<div class="wrapper">
<div class="boxRight"> </div>
<div class="boxLeft first"> </div>
<div class="boxLeft second"> </div>
<div class="boxLeft third"> </div>
</div>
</body>
</html>
Bookmarks