Frage

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...

War es hilfreich?

Lösung 2

The original code worked fine:

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

Andere Tipps

maybe you forgot this

 <meta name="viewport" content="width=device-width, initial-scale=1.0">
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top