1. 如何在vscode中使用less来开发小程序的的wxss
在网上找了一些答案,觉得这篇文章很简洁developers.weixin.qq.com/community/d…
2. less中设置子类的样式的时候会涉及到孙级
<view class="father>
<image></image>
<view class="son">
<image></image>
</view>
</view>
father{
$>image{
}
}
这时son里面的image标签就不会受到样式影响
3. 微信小程序中absolute定位的标签绑定bindtap事件会失效
把该标签样式的z-index设置的比父元素大即可