博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css常用的几种居中方式
阅读量:5745 次
发布时间:2019-06-18

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

css常用的几种居中方式,可以直接拿来用

1,position:absolute定位

.box{  width: 200px;  height: 200px;  position: absolute;   top: 50%;  left: 50%;  margin-top: -100px;  margin-left: -100px;  background: red;}复制代码

2,position:fixed

.box{  width: 200px;  height: 200px;  position: fixed;  top: 50%;  left: 50%;  margin-top: -100px;  margin-left: -100px;  background: red;}复制代码

3,position:fixed, margin:auto

.box{  width: 200px;  height: 200px;  position: fixed;  top: 0;  right: 0;  bottom: 0;  left: 0;  margin: auto;  background: red;}复制代码

4,position:absolute, margin:auto

.box{  width: 200px;  height: 200px;  position: absolute;  top: 0;  right: 0;  bottom: 0;  left: 0;  margin: auto;  background: red;  z-index: 11111;}复制代码

5,position: absolute, transform: translate

.box{  width: 200px;  height: 200px;  position: absolute;  top: 50%;  left: 50%;  transform: translate(-50%,-50%);  background: red;}复制代码

注意: 不同浏览器内核

  • -webkit-transform: translateX(-50%) translateY(-50%); // 谷歌
  • -moz-transform: translateX(-50%) translateY(-50%); // 火狐
  • -ms-transform: translateX(-50%) translateY(-50%);
  • transform: translateX(-50%) translateY(-50%);

如有问题,欢迎指正,谢谢 本文为原创,如需转载请注明出处:

推荐阅读

你可能感兴趣的文章
0.16版本salt的安装与日常应用
查看>>
Hyper-V用差异磁盘克隆系统
查看>>
Kerberos学习(二)
查看>>
2-Tenor AF AFT400-实战-Lync Server 2010-集成-2012-01-19
查看>>
SFB 项目经验-20-Skype for Business for Android-下载到电脑
查看>>
【翻译】优化基于ExtJS 4.1的应用
查看>>
从无到有,WebService Apache Axis2初步实践
查看>>
FOSCommentBundle功能包:设置Doctrine ODM映射(投票)
查看>>
RAID6结构原理详解
查看>>
可穿戴设备创业,卖Jawbone up2配件的故事
查看>>
Azure手把手系列6:存储服务介绍
查看>>
Hyper-V 3虚拟机快照之一 快照应用介绍
查看>>
Windows Server 2008 R2 自定义桌面 图标
查看>>
视频数据:深度数据采集(Depth Data)
查看>>
iOS开发那些-如何打包iOS应用程序
查看>>
《iOS开发指南》图灵出版开始预售了-源码-样章-目录,欢迎大家提出宝贵意见...
查看>>
八、IO优化(7)减少IO竞争
查看>>
Win2008 R2实战之只读域控制器部署(图)
查看>>
RSA2012系列(1): NitroSecurity谈态势感知
查看>>
你看得懂的海明码校验和纠错原理(一)
查看>>