Why does applying a CSS-Filter on the parent break the child positioning?

前端 未结 3 1348
后悔当初
后悔当初 2020-11-22 03:28

So I have this title-screen "animation" that has the title centered on a fullscreen page and when you scroll down it becomes smaller and remains at the top of the

3条回答
  •  北恋
    北恋 (楼主)
    2020-11-22 04:01

    If we refer to the specification we can read:

    A value other than none for the filter property results in the creation of a containing block for absolute and fixed positioned descendants unless the element it applies to is a document root element in the current browsing context. The list of functions are applied in the order provided.

    This means that your position:fixed element will be positioned relatively to the filtred container and no more the viewport. In other words, it's still fixed but inside its new containing block (the filtred container)

    Here is a simplified version to illustrate the issue:

    .container {
      display: inline-block;
      width: 200px;
      height: 200vh;
      border: 1px solid;
    }
    
    .container>div {
      position: fixed;
      width: 100px;
      height: 100px;
      background: red;
      color: #fff;
    }
    I am fixed on scroll
    I move with the scroll

    To fix the issue try to move the filter to the fixed element instead of its container:

    .container {
      display: inline-block;
      width: 200px;
      height: 200vh;
      border: 1px solid;
    }
    
    .container>div {
      position: fixed;
      width: 100px;
      height: 100px;
      background: red;
      color: #fff;
      filter: grayscale(1);
    }
    I am fixed on scroll


    Here is a non-exhaustive1 list of the properties that results in the creation of a containing block for absolute and fixed positioned descendants

    • filter
    • transform ref
    • backdrop-filter ref
    • perspective ref
    • contain ref
    • transform-style ref
    • will-change when used with one of the above values

    If any non-initial value of a property would cause the element to generate a containing block for absolutely positioned elements, specifying that property in will-change must cause the element to generate a containing block for absolutely positioned elements. ref


    1: Will try to keep this list up to date.

提交回复
热议问题