水平居中
行内元素,水平居中的时候通过给父元素设置text-align:center来实现
<body>
<div class="txtCenter">父容器内水平居中显示</div>
</body>
<style>
.txtCenter{
text-align:center;
}
</style>
块元素 分定宽块状 和 不定宽块状元素
定宽块状元素 通过语句margin:0 auto;实现(直接margin:auto;也可以)
div{
width:200px;
margin:0 auto;
/* margin-left 与 margin-right 设置为 auto */
}
不定宽 的可以3种方式
- 加入table标签
利用table标签的长度自适应性---即不定义其长度也不默认父元素body的长度(table其长度根据其内文本长度决定),因此可以看做一个定宽度块元素,然后再利用定宽度块状居中的margin的方法,使其水平居中。
操作方法:
第一步:为需要设置的居中的元素外面加入一个 table 标签 ( 包括 <tbody>、<tr>、<td> )
<div>
<table>
<tbody>
<tr><td>
<ul>
<li>文本1</li>
<li>文本2</li>
</ul>
</td></tr>
</tbody>
</table>
</div>
第二步:为这个 table 设置“左右 margin 居中”(和定宽块状元素的方法一样)
<style>
table{ border:1px solid; margin:0 auto;}
</style>
2.display:inline变为行内元素,使用text-align:center实现
3.浮动父容器position:relative,相对定位,设置left为50%实现
原理:
- 把父元素浮动到左边,同时向右偏移50%,相当于把父元素的左边缘对齐到整行的中间
- 把子元素向右偏移50%,这个50%是父元素的50%,父容器的宽度刚好就等 于子元素的宽度,也是子元素本身的50%,这样刚好就居中了
(可以在父元素中添加一行clear:both(作用是清除两侧浮动,独占一行))
<style>
.container{ float:left; position:relative; left:50%}
</style>
垂直居中
这个介绍的很全面
https://www.qianduan.net/css-to-achieve-the-vertical-center-of-the-five-kinds-of-methods/
在这里把作者推荐的方法贴出来了
在 content 元素外插入一个 div。设置此 div height:50%; margin-bottom:-contentheight;。
content 清除浮动,并显示在中间。
<div id="floater">
<div id="content">Content here</div>
</div>
#floater {
float: left;
height: 50%;
margin-bottom: -120px;
}
#content {
clear: both;
height: 240px;
position: relative;
}
优点:
适用于所有浏览器
没有足够空间时(例如:窗口缩小) content 不会被截断,滚动条出现