一列布局

来源:互联网 发布:优化再造办税服务 编辑:程序博客网 时间:2024/05/14 21:51

自动一列布局关键:
margin:0 auto;
一列布局适用于:简单明了,主题突出,适合放置简单的内容例如文字,大号标题。不适合放置多行文字。由于宽度过长,多行文本阅读时容易串行
<!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;}.top {height:100px;background-color:blue;}.main {width:800px;height:300px;background: #ccc;margin:0 auto;}.foot {width:800px;height:100px;background-color:#900;margin:0 auto;}</style></head><body><div class="top"></div><div class="main"></div><div class="foot"></div></body></html>


效果:

0 0
原创粉丝点击