发布网友 发布时间:2022-04-06 07:35
共2个回答
懂视网 时间:2022-04-06 11:56
(1)行内元素(文字、图片、行内标签(span
)、行内块标签(display:inline-block
)):text-align: center
,下面以span
为例:
<p class="father"> <!-- 行内元素 --> <span class="son">hello</span> </p>
.father { width: 200px; height: 200px; border: 1px solid red; text-align: center;}
优点:兼容性好,简单
缺点:text-align
具有继承性,会影响后代元素
(2)块级元素:margin:0 auto
<!-- 相对于body居中 --><body> <!-- 块级元素 --> <p class="son"></p></body>
.son { width: 200px; height: 200px; border: 1px solid red; margin: 0 auto;}
优点:简单,兼容性好
缺点:宽度必须已知且小于父级元素
(3)flex
实现,设置主轴方向居中
<p class="father"> <span class="son"></span> </p>
.father { width: 500px; height: 100px; border: 1px solid red; display: flex; justify-content: center;}.son { width: 100px; background-color: turquoise;}
如果是多个元素可以设置为:
justify-content: space-around; /* 子元素左右两边距离均匀分布 */或justify-content: space-between; /* 最左边和最右边元素靠紧父元素,其余均匀 */
优点:方便,可以实现自适应
缺点:兼容性稍微差一点,PC端IE10
以上支持
(4)绝对定位实现:子绝父相
<p class="father"> <span class="son"></span> </p>
.father { width: 500px; height: 100px; border: 1px solid red; position: relative; } .son { position: absolute; width: 100px; height: 100px; background-color: red; left: 50%; transform: translate(-50%);/* margin-left: -50% */ }
优点:优点很少,对于较难实现居中的元素可以用定位,margin-left
兼容性好点
缺点:脱离文档流,代码多,兼容性稍微差点,IE9以上
支持transform
,而且需要知道宽度值。
推荐学习:《前端视频》
热心网友 时间:2022-04-06 09:04
对于行内元素: