Fluid width fixed position

后端 未结 7 1776
清酒与你
清酒与你 2021-02-18 22:32

Imagine:

Where:

  • .outer is
7条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-18 22:41

    .outer {
        position: relative;
        width: %;
    }
    .inner {
        position: fixed;
        width: inherit;
    }
    

    That should do the trick.

提交回复
热议问题