如何让文字居中

/*样式设置*/

<style type="text/css">
.box {
position: relative;
}
.box-main {
width: 400px;
height: 400px;
background: #f40;
position: absolute;
left: 20%;
top: 20%;
}
.box-size {
width: 20px;
/*line-height: 20px;*/
color: pink;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>

<div class="box">
<div class="box-main">
<div class="box-size">文字居中了吗 ?居中了</div>
</div>
</div>

猜你喜欢

转载自blog.csdn.net/sky_lq/article/details/79065210