Prevent 100vw from creating horizontal scroll

前端 未结 11 2057
不知归路
不知归路 2020-12-04 19:13

If an element is set to width: 100vw; and there is a vertical scrollbar the width of the element will be equal to the viewport plus the width of the scrollbar.<

11条回答
  •  情深已故
    2020-12-04 19:37

    Here's my solution to the problem of 100vw adding a horizontal scroll:

    html {
    width: calc(100% + calc(100vw - 100%));
    overflow-x: hidden;
    }
    
    .box {
    width: calc(100% + calc(100vw - 100%));
    }
    

提交回复
热议问题