小程序的一些坑

weui 的 button 的边框问题

button 写入 border:none后还是有浅灰色边框,因为还有个隐藏的after伪元素,加入

button::after {
  border: 0;
} 

后才完美解决

view-scroll 横向滚动样式











主要是css

.scroll-header{
display: flex;
white-space: nowrap;  这个很重要,
}
.scroll-header view{
height:128rpx;
width:128rpx;
border:1px solid red;
display: inline-block; 这个也很重要
}

你可能感兴趣的:(小程序的一些坑)