您现在的位置是:网站首页 > 代码编程 > WEB前端WEB前端
【原】如何使三个div均分父级div
不忘初心 2019-06-27 围观() 评论() 点赞() 附件(1) 【WEB前端】
简介:在一些网页设计中,经常会涉及到div均分,那怎么在一个div里均分元素呢?div怎么等分才可以使得div内子元素平均分配?
在一些网页设计中,经常会涉及到div均分,那怎么在一个div里均分元素呢?div怎么等分才可以使得div内子元素平均分配?
一、百分比 + 浮动布局(主要针对三等分)
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>计算百分比,使三个div均分父级div(子元素个数为奇数)</title>
<style type="text/css">
.footer{width:600px;height:300px;margin:100px auto;background:#ddd}
.footer div{float:left;width:30%;margin-left:2.5%;height:300px;line-height:300px;text-align:center}
</style>
</head>
<body>
<div class="footer">
<div style="background:red">item1</div>
<div style="background:pink">item2</div>
<div style="background:orange">item3</div>
</div>
</body>
</html>
二、利用table布局(可自己设置间距)
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>table布局,子元素均分父级div</title>
<style type="text/css">
.footer{width:600px;height:300px;margin:100px auto;background:#ddd}
.footer .items{width:100%;display:table}
.footer .items div{display:table-cell;height:300px;line-height:300px;text-align:center}
</style>
</head>
<body>
<div class="footer">
<div class="items">
<div style="background:red">item1</div>
<div style="background:pink">item2</div>
<div style="background:orange">item3</div>
</div>
</div>
</body>
</html>
三、利用flex布局(可自己设置间距)
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>flex布局,子元素均分父级div</title>
<style type="text/css">
.footer{width:600px;height:300px;margin:100px auto;background:#ddd}
.footer .items{width:100%;display:flex}
.footer .items div{flex:1;height:300px;line-height:300px;text-align:center}
</style>
</head>
<body>
<div class="footer">
<div class="items">
<div style="background:red">item1</div>
<div style="background:pink">item2</div>
<div style="background:orange">item3</div>
</div>
</div>
</body>
</html>
网上还有很多其他方法,我就不一一推荐了,这三种方法在我认为最实用的,就是第一种需要注意,最好是在子元素个数为奇数的时候使用,否则计算百分比的间距很麻烦,后面两种非常好用,推荐大家使用。
看完文章,有任何疑问,请加入群聊一起交流!!!
很赞哦! ()
相关文章
- css实现div居中显示,垂直居中、水平居中
- 如何利用js实现div动态水平垂直居中显示
- IntelliJ IDEA 2024.2发布之后强推新UI,如何恢复老的经典UI界面
- Uninstall hasn't detected folder of intelli] lDEA installation. Probablyuninstall.exe was moved from the installation folder.
- 公众号CPS变现新宠:微赚淘客查券返利机器人,开启智能省钱赚钱新时代
- 高返利优惠券公众号推荐
- 返利公众号可信吗安全吗?返利机器人哪个佣金高?
- 唯品会购物返利公众号大揭秘:哪些真正好用的返利公众号?
- 饿了么优惠券免费领取:哪些公众号值得推荐?
- 哪些有用可靠的微信公众号能领淘宝优惠券?
标签云
猜你喜欢
- IntelliJ IDEA 2019.2已经可以利用补丁永久破解激活了
- IntelliJ IDEA 2019.3利用补丁永久破解激活教程
- IntelliJ IDEA高版本最灵活的永久破解激活方法(含插件激活,时长你说了算)
- Jetbrains全家桶基于ja-netfilter的最新破解激活详细图文教程
- IntelliJ IDEA 2022.1永久破解激活教程(亲测可用,持续更新)
- 分享几个正版 IntelliJ IDEA 激活码(破解码、注册码),亲测可用,持续更新
- ja-netfilter到底需不需要mymap,2021.3.2版本激活失效?
- 如何激活idea2022.1及以上版本中的插件(亲测可用)
- 【史上最全】IntelliJ IDEA最新2022.1版本安装和激活视频教学(含插件)
- IntelliJ IDEA 2022.2 版本最新2099年永久激活方法,亲测可用,也可以开启新UI了。
站点信息
- 网站程序:spring + freemarker
- 主题模板:《今夕何夕》
- 文章统计:篇文章
- 标签管理:标签云
- 微信公众号:扫描二维码,关注我们