Detailed explanation of CSS using position:sticky to implement sticky layout examples

小云云
Release: 2018-02-02 10:36:11
Original
3354 people have browsed it

This article mainly introduces to you the relevant information on the method of using CSS position:sticky to achieve sticky layout. The editor thinks it is quite good, so I will share it with you now and give it as a reference. Let’s follow the editor to take a look, I hope it can help everyone.

Introduction

I wrote an article earlier to explain several commonly used attributes of position: "CSS Basics - Position Attribute Explanation"

Generally, we all know the following commonly used ones:


{
position: static;
position: relative;
position: absolute;
position: fixed;
}
Copy after login

also said at https://developer.mozilla.org/zh-CN/docs/Web/CSS/position The following three values:


/* 全局值 */
position: inherit;
position: initial;
position: unset;
Copy after login

It is estimated that most of them have never used position:sticky. This attribute value is still in the experimental stage. How to describe it?

First look at position:sticky

sticky literally means sticky in English, so let’s call it sticky positioning. Let’s learn about the specific functions and practical scenarios of this experimental value.

This is a special positioning that combines the two positioning functions of position:relative and position:fixed, and is suitable for some special scenarios.

What is the combination of two positioning functions in one?

The element is first positioned according to the normal document flow, and then positioned relative to the flow root (BFC) and containing block (nearest block-level ancestor element) of the element in the flow.

Then, element positioning is relative positioning before crossing a specific threshold, and fixed positioning thereafter.

This specific threshold refers to one of top, right, bottom or left. In other words, sticky positioning can only take effect by specifying one of the four thresholds top, right, bottom or left. Otherwise the behavior is the same as relative positioning.

sticky: Object follows normal flow when normal. It is like a combination of relative and fixed. When it is on the screen, it is typed according to the normal flow. When it is scrolled out of the screen, it behaves like fixed. The performance of this attribute is the adsorption effect you see in reality.

Common scenarios: When the distance between the element and the top of the page viewport (Viewport, which is the reference for fixed positioning) is greater than 0px, the element is positioned in a relative position, and when the distance between the element and the page viewport is greater than 0px When it is less than 0px, the element behaves as fixed positioning and will be fixed at the top.

Code:


{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}
Copy after login

It is expressed as shown below:

is greater than 20px from the top of the page, expressed as position:relative;

## The distance

from the top of the page is less than 20p

x, which appears as position:fixed;

Use

position:sticky

to achieve head navigation bar fixationhtml code:

<p class="con">
    <p class="samecon">
        <h2>标题一</h2>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
    </p>
    <p class="samecon">
        <h2>标题二</h2>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
    </p>
    <p class="samecon">
        <h2>标题三</h2>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
    </p>
    <p class="samecon">
        <h2>标题四</h2>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
    </p>
    <p class="samecon">
        <h2>标题五</h2>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
    </p>
    <p class="samecon">
        <h2>标题五六</h2>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
        <p>这是一段文本</p>
    </p>
</p>
Copy after login

CSS code:

.samecon h2{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background:#ccc;
    padding:10px 0;
}
Copy after login

Similarly, the side navigation bar can also be exceeded and fixed.

Effective rules

    Must specify one of the four thresholds
  • top, right, bottom or left

    Enable sticky positioning. Otherwise the behavior is the same as relative positioning.

    • And
    • top

      and bottom are set at the same time, top takes effect with higher priority, ## When #left and right are set at the same time, left has higher priority.

    • Set to
    position:sticky
  • The

    overflow attribute of any parent node of the element must be visible , otherwise position:sticky will not take effect. An explanation is needed here:

  • If any parent node positioning of the
      position:sticky
    • element is set to

      overflow:hidden, then the parent The container cannot be scrolled, so the position:sticky element will not be scrolled and then fixed.

      If the positioning of any parent node of the
    • position:sticky
    • element is set to

      position:relative | absolute | fixed, the element will be positioned relative to the parent element Positioning, rather than relative viewprot positioning.

    • reaches the set threshold. This is fairly easy to understand, that is, whether an element with
    position:sticky
  • is set to behave as

    relative or fixed is determined based on whether the element reaches the set threshold. of. Compatibility

The compatibility of this attribute is not very good. It is still an experimental attribute and is not a standard recommended by W3C.

Related recommendations:


CSS Sticky Footer Implementation Example Tutorial

JS method to solve position:sticky compatibility problem

How to use Sticky component to implement tab navigation and scroll navigation with sticky effect_javascript skills

The above is the detailed content of Detailed explanation of CSS using position:sticky to implement sticky layout examples. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!