BetaThis is a live doc! Anyone with edit access can make updates in real time without having to publish.
Edited Jan 20
By Bryan
In progress
利用百分比
* {
box-sizing: border-box;
}
html, body, #app {
margin: 0;
padding: 0;
height: 100%
}
.wrapper {
min-height: 100%;
}We need to include selectors for every element that sits between the root html tag, and the element we want to stretch to 100% of the screen size.