Fluid width fixed position

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

Imagine:

Where:

  • .outer is
7条回答
  •  眼角桃花
    2021-02-18 22:43

    What about using something like this fiddle ?

    .outer {
        width: 20%;
        height: 1200px;
        margin-left: 5%;
        float: left;
    }
    .inner {
        height: 200px;
        position: fixed;
        top: 0;
        background: orange;
        right: 75%;
        left: 5%;
    }
    

提交回复
热议问题