微信小程序text文字不能旋转
2018-09-30 本文已影响534人
冬天73051
1、直接使用文字标签加css
.rotate{
transform: rotate(90deg);
}
// 旋转无效
<text class='rotate'>文字旋转</text>
2、解决办法(外层嵌套view,旋转view)
<view class='rotate'>
<text class='icon-arrowright'></text>
</view>
1、直接使用文字标签加css
.rotate{
transform: rotate(90deg);
}
// 旋转无效
<text class='rotate'>文字旋转</text>
2、解决办法(外层嵌套view,旋转view)
<view class='rotate'>
<text class='icon-arrowright'></text>
</view>