1.scroll-view注意事项
scroll-view使用横向scroll-x的情况下,需要把子元素变成内联块元素,然后父元素改成不换行
例如 :
.scrollView{
white-space:nowrap;//不换行
.box{
display:inline-block;//变成内联块元素
}
}
scroll-view使用横向scroll-x的情况下,需要把子元素变成内联块元素,然后父元素改成不换行
例如 :
.scrollView{
white-space:nowrap;//不换行
.box{
display:inline-block;//变成内联块元素
}
}