赞
踩
"plugins": ["transform-object-assign"]
<span class="content”>jasonjin</span>
.content {
display: inline-block;
height: 40px;
background-color: gray;
line-height: 40px;
font-size: 20px;
transform: scale(0.5);
transform-origin: 0% 0%;
}
2. table布局 在元素外再包一层,使用表格布局
- <div class="container">
- <span class="content">testtesttesttesttest</span>
- </div>
.container {
display: table;
}
.content {
background-color: gray;
font-size: 10px;
display: table-cell;
vertical-align: middle;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。