Fixed Position div Vertical Only

前端 未结 3 1739
攒了一身酷
攒了一身酷 2021-02-06 04:33

I have a current web build with a right sidebar that is a fixed position. I have tried to positioning from the right but don\'t want it overlapping other divs content.

W

3条回答
  •  北海茫月
    2021-02-06 05:04

    then add one more property in #sidebar

    #sidebar {
    width:400px;
    height:550px;
    padding:10px;
    float:left;
    text-transform:uppercase;
    position:fixed;
    left:835px;
    overflow:scroll-x;
    }
    

提交回复
热议问题