美文网首页微信小程序
微信小程序text文字不能旋转

微信小程序text文字不能旋转

作者: 冬天73051 | 来源:发表于2018-09-30 10:53 被阅读534次

    1、直接使用文字标签加css

    .rotate{
        transform: rotate(90deg); 
    }
    // 旋转无效
    <text class='rotate'>文字旋转</text>
    

    2、解决办法(外层嵌套view,旋转view)

     <view class='rotate'>
        <text class='icon-arrowright'></text>
    </view>
    

    相关文章

      网友评论

        本文标题:微信小程序text文字不能旋转

        本文链接:https://www.haomeiwen.com/subject/xvzioftx.html