用CSS怎样做三列布局中间自适应的效果?
Admin 2021-12-24 群英技术资讯 377 次浏览
三列布局是比较常见的布局,这篇文章给大家分享用CSS实现三列布局中间自适应的效果,也就是两列固定与一列自适应,小编觉得挺实用的,因此分享给大家做个参考,文中示例代码介绍的很详细,感兴趣的朋友接下来一起跟随小编看看吧。
1.flex布局
Flexible Box 模型,通常被称为 flexbox,是一种一维的布局模型。它给 flexbox 的子元素之间提供了强大的空间分布和对齐能力。我们说 flexbox 是一种一维的布局,是因为一个 flexbox 一次只能处理一个维度上的元素布局,一行或者一列。这里我们利用flex布局来实现两列固定一列自适应
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> #main{ display: flex;/*设为伸缩容器*/ } #left{ width:200px;/*左侧固定宽度*/ height:400px; background:aqua; } #center{ flex-grow:1; /*填满剩余空间*/ height:400px; background:green;} #right{ width:200px;/*固定右侧宽度*/ height:400px; background:blue; } </style> </head> <body> <div id="main"> <div id="left"></div> <div id="center"></div> <div id="right"></div> </div> </body> </html>
2.使用浮动方法
对左右两部分分别使用float:left和float:right,float使左右两个元素脱离文档流,中间元素正常在正常文档流中。对中间文档流使用margin指定左右外边距进行定位。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> *{margin: 0;padding: 0;} #main{ width: 100%;height: 400px; } #left{ width:200px;/*左侧固定宽度*/ height:400px; float: left; /*设置容器左浮动*/ background:aqua; } #center{ width: 100%; height:400px; margin: 0 200px;/*设置容器左右外边距*/ background:green;} #right{ width:200px;/*固定右侧宽度*/ height:400px; float: right;/*设置容器右浮动*/ background:blue; } </style> </head> <body> <div id="main"> <div id="left"></div> <div id="right"></div> <div id="center"></div> </div> </body> </html>
3.使用浮动加calc函数
对三部分使用float:left,然后左右两边固定宽度,中间使用calc函数计算宽度。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> *{margin: 0;padding: 0;} #main{ width: 100%;height: 400px; } #left{ width:200px;/*左侧固定宽度*/ height:400px; float: left; /*设置容器左浮动*/ background:aqua; } #center{ width: calc(100% - 400px);/*设置中间宽度为父容器宽度减去400px*/ height:400px; float: left;/*设置容器左浮动*/ background:green;} #right{ width:200px;/*固定右侧宽度*/ height:400px; float:left;/*设置容器左浮动*/ background:blue; } </style> </head> <body> <div id="main"> <div id="left"></div> <div id="center"></div> <div id="right"></div> </div> </body> </html>
4.使用绝对定位
用绝对定位把左右两部分固定在两端,对中间文档流使用margin指定左右外边距进行定位。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> *{margin: 0;padding: 0;} #main{ width: 100%; height: 400px; position: relative;/*父容器使用相对定位*/ } #left{ width:200px;/*左侧固定宽度*/ height:400px; position: absolute;/*左侧使用固定定位*/ left: 0;/*定位在容器最左边*/ top: 0; background:aqua; } #center{ width:100%; height:400px; margin: 0 200px;/*设置中间容器左右外边距*/ background:green;} #right{ width:200px;/*固定右侧宽度*/ height:400px; position: absolute;/*右侧使用固定定位*/ right: 0;/*定位在容器最右边*/ top: 0; background:blue; } </style> </head> <body> <div id="main"> <div id="left"></div> <div id="center"></div> <div id="right"></div> </div> </body> </html>
效果图如下:
以上就是关于CSS三列布局的实现方法介绍了,对于两列固定与一列自适应的布局实现,上述四种方法有一定的参价值,有需要的朋友可以了解看看,希望对大家学习CSS布局有帮助,想要了解更多可以继续浏览群英网络其他相关的文章。
文本转载自脚本之家
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
这篇文章主要介绍了rem适配移动设备的方法示例的相关资料,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
在编写 CSS 时,有时可能会使用很长的选择器列表来定位具有相同样式规则的多个元素。例如,如果您想对标题中的 b 标签进行颜色调整,我们应该都写过这样的代码: h1 > b, h2 > b, h3 > b, h4 > b, h5 >...
怎么使用SVG给 favicon 添加标识?下面本篇文章给大家介绍一下使用 SVG 生成带标识的 favicon的方法,希望对大家有所帮助!
这篇文章主要介绍了用css实现正方形div 的两种方法,需要的朋友可以参考下
我们提到CSS响应布局的,就会想要使用Grid和Flexbox来实现,其实它们也有一些局限性。像瀑布流布局这种,就无法用它们来简单实现。这其中的原因就是瀑布流一般来说都是宽度一致,但
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008