CSS如何实现页面两列布局与三列布局
2020-03-05 16:00:43来源:爱站网 阅读 ()
在css中布局是非常重要的,但是有很多小伙伴们都不知道CSS如何实现页面两列布局与三列布局,那么接下来的内容中我们就和爱站小编一起去看看CSS实现页面两列布局与三列布局的方法吧。
1. 使用BFC的原理实现BFC的规则之一,就是BFC区域,不会与float box重叠,因此我们可以利用这一点来实现3列布局。
html代码如下
- <div class="left">div>
- <div class="right">div>
- <div class="main">div>
css代码如下
- .left {
- float: left;
- margin-right: 10px;
- width: 100px;
- height: 100px;
- background-color: orange;
- }
- .rightright {
- float: rightright;
- margin-left: 10px;
- width: 100px;
- height: 100px;
- background-color: orange;
- }
- .main {
- height: 100px;
- background-color: green;
- overflow: hidden;
- }
2.双飞翼布局
这种布局方案最早由淘宝提出,主要为了主列能够被最先加载。
实现原理:
(1)让主列外面添加一个wrap,主列wrap,以及2子列都左浮动。
(2)设置主列wrap宽度为100%,将子列的margin-left设置为负值,让子列能够排列在左右两侧。
(3)这是主列的margin-left与margin-right比左右两列的宽度大一点,则可以设置出来主列与子列之间的间隙。
html代码如下
- <div class="wrap">
- <div class="main-content">
- <div class="main">div>
- div>
- <div class="left">div>
- <div class="right">div>
- div>
css代码如下
- .wrap {
- width: 100%;
- }
- .wrap::after {
- display: block;
- content: '';
- font-size: 0;
- height: 0;
- clear: both;
- zoom: 1;
- }
- .main-content {
- float: left;
- width: 100%;
- }
- .main {
- height: 100px;
- background-color: green;
- margin-left: 110px;
- margin-right: 110px;
- }
- .left {
- float: left;
- width: 100px;
- height: 100px;
- background-color: orange;
- margin-left: -100%;
- }
- .rightright {
- float: left;
- width: 100px;
- height: 100px;
- background-color: orange;
- margin-left: -100px;
- }
3.圣杯布局
圣杯布局在结构上要简单一点,也能够让主列优先加载。
实现原理:
(1)添加一个包裹框,设置padding-leftpadding-right值,比子列宽度大一个空隙的宽度。
(2)主列,子列都设置为float: left 左子列margin-left设置为-100%,并且设置为position:relative; left: -110px将左子列放置到左侧。右子列同理。
(3)主列只需设置宽度为100%即可。包裹框的宽度不要设置为100%,自适应即可。
html代码如下
- <div class="wrapper">
- <div class="main">div>
- <div class="left">div>
- <div class="right">div>
- div>
css代码如下
- .wrapper {
- padding-left: 110px;
- padding-right: 110px;
- overflow: hidden;
- }
- .main {
- float: left;
- width: 100%;
- height: 100px;
- background-color: #ccc;
- }
- .left {
- float: left;
- width: 100px;
- height: 100px;
- margin-left: -100%;
- position: relative;
- left: -110px;
- _left: 0;
- background-color: orange;
- }
- .rightright {
- float: left;
- width: 100px;
- height: 100px;
- background-color: orange;
- margin-left: -100px;
- position: relative;
- rightright: -110px;
- }
下面再给出一个高度占满全屏的例子:
-
- "_blank" href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml"> xmlns=
- "server"> runat=
- "Content-Type" content="text/html; charset=utf-8" />
- > type=
- body, html {
- margin: 0px;
- }
- #header {
- background: blue;
- height: 100px;
- width: 100%;
- position: relative; /*父div的位置设置成相对的*/
- top: 0;
- }
- #header #h_menu {
- position:absolute;
- bottombottom:0;
- background:yellow;
- width:100%;
- height:50px;
- }
- #middle {
- position:absolute;
- width:100%;
- height:auto;
- top: 100px;
- bottombottom:50px;
- }
- .left {
- width: 15%; /*这里是百分比或者像素值,对应下面的center就是百分比或者像素值*/
- background: red;
- float: left;
- height:100%;
- }
- .rightright {
- width: 15%; /*这里是百分比或者像素值,对应下面的center就是百分比或者像素值*/
- height: 100%;
- background: pink;
- float: rightright;
- }
- .center {
- height: 100%;
- background: green;
- /*两种方式均可(一)margin(二)margin-left、margin-right*/
- /*(一)、用这种方式上面的left和right中的width是百分比或者像素值都可以*/
- margin: auto;
- /*(二)、这里是百分比或者像素值,对应上面的left、right中的width就是百分比或者像素值*/
- /*margin-left:15%;
- margin-right:15%;*/
- }
- #footer {
- background: blue;
- height: 50px;
- width: 100%;
- position: absolute;
- bottombottom: 0;
- }
- id=
-
- "header">id=
- 上
- "h_menu">id=
- 上_底
- "middle">id=
- "left">class=
- 中左
- "right">class=
- 中右
- "center">class=
- 中间
- "footer">id=
- 下
-
看完后你知道CSS如何实现页面两列布局与三列布局了吗?希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。
原文链接:https://js.aizhan.com/web_authoring/css/11916.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:2020年校招东软面经
- DIV居中的经典方法 2020-06-13
- CSS中的float和margin的混合使用 2020-06-11
- Html/css 列表项 区分列表首尾 2020-06-11
- css与javascript重难点,学前端,基础不好一切白费! 2020-06-11
- ie8下透明度处理 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash