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

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

方法1 margin

.box{    width: 100px;    height: 100px;    background-color: red;    position: absolute;    left: 50%;    top: 50%;    margin-left: -50px;    margin-top: -50px;}

方法2 CSS3 transform-translate

.box {    width: 100px;    height: 100px;    background-color: red;    position: absolute;    left: 50%;    top: 50%;    transform: translate(-50%, -50%);}

方法3 flex

.box {    display: flex;    background-color: red;    height: 400px;    width: 400px;    align-items: center;    justify-content: center;}.box2 {    height: 100px;    width: 100px;    background-color: pink;}

方法4 转换为inline

.box {    background-color: red;    height: 400px;    width: 400px;    text-align: center;    line-height: 400px;}.box2 {    display: inline;    background-color: pink;}
内容内容

转载于:https://www.cnblogs.com/studysuper/p/9949608.html

你可能感兴趣的文章
面向对象设计
查看>>
ant 安装
查看>>
新手Python第一天(接触)
查看>>
vue路由动态加载
查看>>
【原】UIWebView加载本地pdf、doc等文件
查看>>
iOS中ARC内部原理
查看>>
【bzoj1029】[JSOI2007]建筑抢修
查看>>
synchronized
查看>>
你不得不了解的应用容器引擎---Docker
查看>>
easyui datagrid 弹出页面会出现两个上下滚动条处理办法!
查看>>
迭代器和生成器
查看>>
MYSQL分区表功能测试简析
查看>>
codevs 1080 线段树练习
查看>>
JS模块化库seajs体验
查看>>
Android内核sysfs中switch类使用实例
查看>>
POJ2288 Islands and Bridges(TSP:状压DP)
查看>>
POJ3250 Bad Hair Day(单调栈)
查看>>
[No0000195]NoSQL还是SQL?这一篇讲清楚
查看>>
IOS开发UI篇--UITableView的自定义布局==xib布局
查看>>
【深度学习】caffe 中的一些参数介绍
查看>>