Home > Article > WeChat Applet > Precautions for usage of the mini program scoll-view
The mini program comes with the component scorll-view, which is easy to use, but you should pay attention to one thing when using it
1. The internal components of scorll-view are not Support flex layout
2. Depending on the sliding direction, a fixed value should be given to the width of soroll-view for sliding in the x-axis direction. If it is sliding in the y-axis direction, a fixed value should be given to the scroll-view. The height of the view is given a fixed value
3. When the setting is to scroll in the x-axis direction, the internal sliding blocks should not be arranged horizontally in a float direction because this will break away from the scorll-view package, causing the It has no effect. The solution is to set each internal element to inline-block and force no line breaks (in scorll-view) white-space: nowrap;
Okay, not much, as shown above
## Related recommendations: "
Mini Program Development Tutorial 》
The above is the detailed content of Precautions for usage of the mini program scoll-view. For more information, please follow other related articles on the PHP Chinese website!