Transform(变换)—Y轴lable内容旋转

时间:2023-03-09 01:08:17
Transform(变换)—Y轴lable内容旋转
 <!DOCTYPE html>
<html>
<head>
<style>
div{
border:1px solid;
}
.bb{
position:absolute;
width:200px;
height:20px;
text-align: center;
transform: rotate(-90deg);
transform-origin: 0 0;
top:50%;
margin-top:100px;
}
.aa{
position:relative;
width:20px;
height:500px;
}
</style>
</head> <body> <div class="aa">
<div class="bb"><span>ABCDEFGasdfasfa</span></div>
</div> </body>
</html>

Transform(变换)—Y轴lable内容旋转