Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Height by percentage Reply To: CSS Height by percentage

#156507
janet4now
Participant
body, html { width: 100%; height: 100%; }


.div1 { background: blue; height:10vh; } .div2 { background: red; height:30vh; } .div3 { background: green; height:60vh; }

Use “vh” which is “viewport height” rather than % or pixels.