微信小程序Textarea踩坑

功能是需要写一个评论框 ,左边图片图标要和文字对齐,在模拟器和安卓手机上测试没问题,在苹果手机上测试,不管怎么样都对不齐,苹果手机真机调试发现textarea竟然上下有padding.........并且设置padding:0没用

解决方法:判断手机操作系统来改变图标到底部的距离.(左边图标用绝对定位absolute写的)

wx.getSystemInfo().then(res => {
    if(res.platform === 'ios'){
       this.setState({
          iosPlatform :true,
       });
    }
});

-------------如果是Taro------------------

Taro.getSystemInfo().then(res => {
    if(res.platform === 'ios'){
       this.setState({
          iosPlatform :true,
       });
    }
});

 

你可能感兴趣的:(小程序,Taro)