(1)方法一
position: fixed
/* 居中对齐begin */
left: 50%
/* 兼容老版本的方法 */
-webkit-transform: translateX(-50%)
transform: translateX(-50%)
(2)方法二
设置固定宽度,并且设置margin:auto
(3)方法三
position: fixed
left: 50% - 居中盒子宽度的50%
2.纵向居中
(1) 高度和行高设置一样
height: 100px
line-height:100px
3.横向和纵向都居中
display: flex
/* 默认的主轴是x轴row, justify-content: center 沿着主轴居中对齐 */
justify-content: center
/* 我们需要一个侧轴居中 */
align-items: center
用table给 通报名称 那一行加一个th标签就可以居中。
如果不用table,用div或者其他标签的话你可以在最外层加一个下边框:
border-bottom: 1px solid red然后里面每一项,比如说是li,就给li加样式:
height: 30pxline-height: 30px
text-align: center