100vw causing horizontal overflow, but only if more than one?

前端 未结 6 1773
天命终不由人
天命终不由人 2020-11-28 22:10

Say you have this:

html, body {margin: 0; padding: 0}
.box {width: 100vw; height: 100vh}

Screen 1

You

6条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-28 22:27

    to get rid of the scrollbar width included in vw i had to do this:

    html, body {
        overflow-x: hidden;
        height: 100vh;
    }
    

提交回复
热议问题