html怎么让⽂字在盒⼦⾥居中,怎么把⼀⾏或多⾏⽂字,垂直居中在⼀个⾃适应⾼度的盒⼦中...
在⽂字外⾯加个框,通过transform实现。
*{
margin: 0px;html怎么让所有内容居中
padding: 0px;
}
.container{
width: 100%;
height: 300px;
background-color: #f00;
}
.
text{
position: relative;
width: 80%;
height: auto;
top: 50%;
left: 50%;
background-color: #fff;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
怎么把⼀⾏或多⾏⽂字,垂直居中在⼀个⾃适应⾼度的盒⼦中,
怎么把⼀⾏或多⾏⽂字,垂直居中在⼀个⾃适应⾼度的盒⼦中,
怎么把⼀⾏或多⾏⽂字,垂直居中在⼀个⾃适应⾼度的盒⼦中,
怎么把⼀⾏或多⾏⽂字,垂直居中在⼀个⾃适应⾼度的盒⼦中

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。