Search code examples
htmlcssscrollbarviewport

How can I create equal width/height boxes that fit the screen width?


I'm trying to build a website that has lots of boxes that are of equal width and height. For example, I have a page that has two equal size boxes side by side.

The simple solution was to set the width and height to 50vw. This works great until there is a scroll bar. I've googled around for hours and can't understand why on earth vw and vh would include the scrollbars as part of the viewport.

Here's a sample of my issue

body {
    margin: 0;
    padding: 0;
}

.container {
    width: 100vw;
}

.box {
    float: left;
    width: 50vw;
    height: 50vw;
}

.red {
    background-color: red;
}

.green {
    background-color: green;
}

.lotta-content {
    height: 10000px;
}
<div class="container">
    <div class="box red"></div>
    <div class="box green"></div>
</div>
<div class="lotta-content"></div>

Notice the unwanted horizontal scrollbar.

One possible solution would be to use percentages for the widths, but vw for the height, but it won't ever be a perfect box which isn't the worst thing in the world, but still not ideal. Here's a sample:

body {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
}

.box {
    float: left;
    width: 50%;
    height: 50vw;
}

.red {
    background-color: red;
}

.green {
    background-color: green;   
}

.lotta-content {
    height: 10000px;   
}
}
<div class="container">
    <div class="box red"></div>
    <div class="box green"></div>
</div>
<div class="lotta-content"></div>

Why does vw/vh include scrollbars as part of the viewport? Is there a better solution than my own? I'm looking for a pure CSS solution. I rather not have JavaScript.


Solution

  • It would be convenient if viewport units didn't include cause scrollbars but it is the display size (screen) after all. Have look at this solution with a pseudo element though:

    http://www.mademyday.de/css-height-equals-width-with-pure-css.html

    Makes for a square in your example as well:

    https://jsfiddle.net/3z887swo/4/

    .box {
        float: left;
        width: 50%;
    }
    
    .box::before {
        content: "";
        display: block;
        padding-top: 100%;
    }
    

    Edit - if anyone is wondering why this works (vertical padding responding to the original element's width)... that's basically how it's defined in the specification:

    The percentage is calculated with respect to the width of the generated box's containing block, even for 'padding-top' and 'padding-bottom'.

    http://www.w3.org/TR/CSS2/box.html#padding-properties


    After coming across my own answer, I think it needed some refinement. Semantic ambiguity is why I replaced the word "include" with "cause" at the top. Because it's more the fact that vw units only take the viewport size into account - not including any scrollbar and causing overflow and a scrollbar in the other direction when its width is added to 100vw (making the total space that is needed the viewport plus scrollbar width, exceeding the screen).

    As with the question here, the best way to handle vw units is likely to avoid them if you can because they just aren't very compatible with desktop browser (that don't have overlaying scrollbars).

    I edited out the idea that included a CSS variable, however hopeful it seemed.