二列布局

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>二列布局</title>
<style type="text/css">
body{ margin:0; padding:0; font-size:30px; font-weight:bold}
div{ text-align:center; line-height:50px}
.main{ 960px; height:600px; margin:0 auto}
.left{ 300px; height:600px; background:#ccc;float:left;}/*左浮动样式*/
.right{ 660px; height:600px; background:#ccf; float:right;}/*右浮动样式*/
</style>
</head>

<body>
<div class="main">
<div class="left">left</div>
<div class="right">right</div>
</div>
</body>
</html>

原文地址:https://www.cnblogs.com/xyw521520/p/5356715.html