The fixed layout of the page header was previously implemented with position:fixed, but now it can be implemented with flex layout, which is quick and convenient. Advantages of Flex layout: 1. Does not destroy the HTML document flow 2. Better compatibility. display: flex and display: -webkit-box are just names for different stages and there is no difference. <view> <view class="header"></view> <view class="content"></view> </view> page{ display: -webkit-box; //Set elastic layout -webkit-box-orient: vertical; //Set sub-element vertical layout height: 100%; } .header:{ height: 50px; //Set the head height (fixed position) } .content:{ -webkit-box-flex: 1; //Set 1 equal part to fill the full screen overflow: auto //Set overflow scrolling} Note: If there is no response, remove the outer view This concludes this article on how to use Flex layout to achieve scrolling of fixed content area in the header. For more relevant Flex header fixed content area scrolling content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! |
<<: Add ?v= version number after js or css to prevent browser caching
>>: Understanding MySQL index pushdown in five minutes
#String concatenation concat(s1,s2); concatenate ...
MySQL multi-condition query with AND keyword. In ...
This article shares the specific code of the WeCh...
Root directory and index file The root directive ...
1. Import the basic style of external CSS files U...
As the most commonly used layout element, DIV play...
Modern browsers no longer allow JavaScript to be ...
Copy code The code is as follows: <span style=...
Table of contents Overview 1. Stack and Heap 2. V...
Preface: The Linux host is relatively easy to han...
Table of contents 01 Create invisible columns 02 ...
This article example shares the specific code of ...
Sometimes we want to execute a command in a conta...
As the company's influence grows and its prod...
Chinese documentation: https://router.vuejs.org/z...