CSS basics-use position: sticky to implement sticky Layout

Source: Internet
Author: User

CSS basics-use position: sticky to implement sticky Layout
Introduction

I have previously written an article to explain several common attributes of position: Explanation of position of CSS attributes
We generally know the following common examples:

{position: static;position: relative;position: absolute;position: fixed;}

The following three values are available at https://developer.mozilla.org/zh-cn/docs/web/css/position:

/* Global Value */position: inherit; position: initial; position: unset;

 

Most of them are not used.Position: stickyRight. This attribute value is still in the test phase. How to describe it?

Sticky: the object follows the regular flow in normal conditions. It is likerelativeAndfixedWhen the screen is in the regular flow layout, when the scroll to the outside of the screen, the performance is as follows:fixed. This property shows the actual adsorption effect you see.

Common scenarios: when the distance between an element and the top of the page is greater than 0 PX (Viewport, that is, the reference for fixed positioning), the element is positioned as relative. When the distance between an element and the page view is less than 0 PX, the element is positioned as fixed, which is fixed on the top.

Code:

{    position: -webkit-sticky;    position: sticky;    top: 0;}

For example:

It is larger than 20px from the top of the page, as shown in position:relative;

Less than 20 px from the top of the page, as shown in position:fixed;

Application position:stickyFixed the header navigation bar

Html code:

<Div class = "con"> <div class = "samecon"> 

CSS code:

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

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

Effective rules
  • Top, right, bottom, or left must be specified to take effect for the viscous positioning. Otherwise, the behavior is the same as the relative positioning.

    • AndtopAndbottomAt the same time,topHigh priority,leftAndrightAt the same time,leftHigh priority.
  • Setposition:stickyThe overflow attribute of any parent node of the element must be visible. Otherwiseposition:stickyDoes not take effect. Here we need to explain:

    • Ifposition:stickyAny parent node of the element is positionedoverflow:hidden, The parent container cannot be rolled, soposition:stickyThe element does not have to scroll and then be fixed.
    • Ifposition:stickyAny parent node of the element is positionedposition:relative | absolute | fixedThe element is located relative to the parent element, but not relative to the viewprot.
  • Reaches the set threshold. This is easy to understand.position:stickyThe element isrelativeOrfixedIt is determined by whether the element has reached the set threshold.

Compatibility

The compatibility of this attribute is not very good. It is still a test property and is not the W3C recommendation standard.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.