一列固定宽度布局

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>一列固定宽度</title>
 <style type="text/css">
 #layout{
	background-color:#cccccc;
	border:2px solid #333333;
	width:300px;
	height:300px;
	color:red;
	font-weight:20px;
 }
 </style>
 </head>
 <body>
  <div id="layout">一列固定宽度</div>
 </body>
</html>