我是靠谱客的博主 健康香氛,最近开发中收集的这篇文章主要介绍网页布局(div布局),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

网上有太多介绍,个人觉得不错的有《Div+CSS布局大全》,有PDF版本,可下载离线观看,别人总结的一个文档,简洁易懂,学起来不费劲,花时间不多,快速阅读完,即可上手,呵呵。

这里就不介绍语法,讲述一下一些布局的实现。

布局最常用的是div和table,个人比较喜欢div,灵活性高。


Div水平居中

核心语句:margin:0px auto;

<div style=" margin:0px auto; width:100px; height:100px; background:#FF0000;">

 


Div水平排列

核心语句:float:left


<div style="float:left; width:20%; height:100px; background:#FF0000;"></div>
<div style="float:left; width:60%; height:200px; background:#000000;"></div>
<div style="float:left; width:20%; height:100px; background:#FF0000;"></div>

三列


Div三行(满屏)


<div style=" margin:0px auto; height:50px; background:#FF0000;"></div>
<div style=" margin:0px auto; height:300px; background:#000000;"></div>
<div style=" margin:0px auto; height:50px; background:#FF0000;"></div>

 


Div三行(居中)


并排div自动增高(中部两列)

核心语句:底部div设置clear:both

复制代码

<div style=" margin:0px auto; width:400px; height:50px; background:#FF0000;"></div>
<div style=" margin:0px auto; width:400px;">
<div style=" float:left; width:30%; height:100px; background:#000079;"></div>
<div style=" float:right; width:70%; height:300px; background:#006000"></div>
</div>
<div style=" margin:0px auto; width:400px; height:50px; background:#FF0000; clear:both;"></div>
复制代码


并排div自动增高(中部三列)

复制代码

<div style=" margin:0px auto; width:400px; height:50px; background:#FF0000;"></div>
<div style=" margin:0px auto; width:400px;">
<div style=" float:left; width:30%; height:100px; background:#000079;"></div>
<div style=" float:left; width:50%; height:300px; background:#006000"></div>
<div style=" float:right; width:20%; height:150px; background:#BB3D00"></div>
</div>
<div style=" margin:0px auto; width:400px; height:50px; background:#FF0000; clear:both;"></div>
复制代码


Div固定到屏幕指定位置(广告位、头部导航固定,不随滚动条滑动变化)

核心语句:position:fixed; left:0px; top:50px;

复制代码

<div style=" margin:0px auto; width:400px; height:50px; background:#FF0000;"></div>
<div style=" margin:0px auto; width:400px;">
<div style=" float:left; width:30%; height:100px; background:#000079;"></div>
<div style=" float:left; width:50%; height:300px; background:#006000"></div>
<div style=" float:right; width:20%; height:150px; background:#BB3D00"></div>
</div>
<div style=" margin:0px auto; width:400px; height:50px; background:#FF0000; clear:both;"></div>
<div style="width:50px; height:150px; background:#00FFFF; position:fixed; left:0px; top:50px;"></div>
复制代码

 

可自行变化成头部、底部固定布局。


最后

以上就是健康香氛为你收集整理的网页布局(div布局)的全部内容,希望文章能够帮你解决网页布局(div布局)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部