博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css 居中
阅读量:6838 次
发布时间:2019-06-26

本文共 1104 字,大约阅读时间需要 3 分钟。

/* 绝对定位元素居中:  */        .loading-img {
position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); } /* 一般块儿级元素居中: */ .div_container {
width: 500px; margin: 0 auto; } /* 块儿级元素内部元素居中(flax布局,水平居中为例): */ li {
width: 100px; height: 100px; display: inline-block; border: 10px solid red; margin: 20px; } ul {
width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; padding-start: 0; /*默认padding-start有40px*/ } /* left:0; right:0; top:0; bottom:0; margin:auto;会使child居中,如果child没有宽高,则会继承父集的宽高,适合body 内的遮罩 */ .child {
width: 50px; height: 50px; position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; }

 

转载于:https://www.cnblogs.com/fengyouqi/p/8085768.html

你可能感兴趣的文章
第一次团队冲刺4
查看>>
冒泡排序
查看>>
android studio 各种问题
查看>>
ios中一个开发者证书如何创建多个app应用
查看>>
创建和存储 cookie
查看>>
BZOJ2351[BeiJing2011]Matrix——二维hash
查看>>
Redis常用命令整理
查看>>
js的水仙花数的输出
查看>>
Codeforces Gym 100269 Dwarf Tower (最短路)
查看>>
mongo explain分析详解
查看>>
MySQL 行子查询
查看>>
Comparison Operators Modified by ANY, SOME, or ALL
查看>>
java第四次作业
查看>>
一台机器同时启动两个tomcat
查看>>
Determine destination location of apt-get install <package>?
查看>>
mockups
查看>>
sys_init
查看>>
array_map与array_column之间的关系
查看>>
xml 学习
查看>>
一次性验证码
查看>>