css 不定宽高的元素居中布局解决方案
建站知识 2021-07-03 07:55www.168986.cn长沙网站建设
1. 水平居中
公共代码:
html:
<div class="parent"> parent <br> <div class="child"> child </div> </div>
css:
html, body { margin: 0; width: 100%; height: 100%; .parent { width: 100%; height: 100%; background: #fac3fa; .child { width: 50%; height: 50%; background: #fe9d38; } } }
方案一: text-align(父) + inline-block(子)
代码:
css:
.parent { text-align: center; .child { display: inline-block; } }
方案二: 块级元素 + margin: 0 auto;
.child { display: block; // 非块级元素时设置 margin: 0 auto; }
方案三: absolute + transform
.parent { position: absolute; left: 50%; transform: translateX(-50%); }
方案四: flex
注: 由于使用flex的关系, 这里去掉了 parent 和<br>
.parent { display: flex; justify-content: center; }
2. 垂直居中
公共代码:
html:
<div class="parent"> <div class="child"></div> </div>
css:
html, body { margin: 0; width: 100%; height: 100%; } .parent { display: table-cell; width: 800px; height: 500px; background: #fac3fa; .child { width: 50%; height: 50%; background: #fe9d38; } }
方案一: table-cell(父) + vertical-align(子)
.parent { display: table-cell; vertical-align: middle; }
方案二: absolute + transform
.parent { position: relative; .child { position: absolute; : 50%; transform: translateY(-50%); } }
方案三: flex
.parent { display: flex; align-items: center; }
3. 水平垂直居中
公共代码同[垂直居中]
常用方案一: absolute + transform
.parent { position: relative; .child { position: absolute; : 50%; left: 50%; transform: translate(-50%, -50%); } }
常用方案二: flex
.parent { display: flex; align-items: center; justify-content: center; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
长沙网站设计
- 如何自己建一个网站 自己想建个网站,怎么建
- 如何制作网站免费建站 创建网站免费注册
- html简单网页代码 html简单网页代码超链接
- dreamweaver网页制作 dreamweaver网页制作模板
- 上海网站建设 上海网站建设制作微信
- 如何制作网站和网页 如何制作一个网页
- html网页制作代码大全 端午节html网页制作代码大
- app开发公司 app开发公司前十名
- html网页制作 html网页制作文字居中
- app制作一个需要多少钱 请人制作一个app多少钱
- 成都网站制作 成都网站制作维护
- 百度建一个网站多少钱 百度做个公司网站要多少
- html+css网页制作成品 web网页制作成品css+javascrip
- html网页制作案例 html网页设计案例
- html+css网页制作成品 web网页制作成品css+javascrip
- 个人网站模板 个人网站模板HTML