首页 > 代码库 > 1.关于css居中的几种方式
1.关于css居中的几种方式
刚开始的时候看到垂直居中就有点头大,现在写出来为后来的同学头不要再大
首先来看一下dom结构,一般是俩个容器,
<div class="container"> <div class="t1"> </div> </div>
第一种方式 也是很常用的一种方式
贴css代码
.container{ width: 400px; height: 400px; margin: 0 auto; background: lightcoral; position: relative; margin-top: 10px; } .container>.t1{ position: absolute; height: 200px; width: 200px; top: 50%; left: 50%; margin-top: -100px; margin-left: -100px; border: 1px solid white; }
这相信很多人多会通过定位的方式是元素偏移
第二种方式 DOM结构同上
.container>.t2{ position: absolute; height: 200px; width: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px solid white; }
和前一种方式原理差不多只是使用transform代替了margin
第三种方式 使用calc()也能实现
.container>.t4{ position: absolute; width: 200px; height: 200px; top: calc(50% - 100px); /*top: -webkit-calc(50% - 100px);*/ left: calc(50% - 100px); /*left: -webkit-calc(50% - 100px);*/ border: 1px solid white; }
第四种方式 使用flex布局 借鉴了之前的container的css dom结构也没有什么区别
<div class="container flex">
<div class="t3">
</div>
</div>
css
.flex{ display: flex; justify-content: center; align-items: center; } .flex>.t3{ height: 200px; width: 200px; border: 1px solid white; }
基本上效果图都是一样如下
1.关于css居中的几种方式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。