Search code examples
cssviewport-units

sizing a width by VW units while assuring a minimum width


How can I size a DIV with a vw units on the upper size BUT assure a minimum width of at least 100px?

.container {
    min-width:1000px;
    width: 85vw;
}

Is not working...


Solution

  • The original code worked fine:

    .container {
        min-width:1000px;
        width: 85vw;
    }