Resizing Square
This is an example of the usage of the vw unit.
HTML
<div class="square">
<h5>This is a Square</h5>
</div>
CSS
.square {
background: #DCDCDC;
width: 50vw;
height: 50vw;
border-radius: 5vw;
overflow-y: auto;
}
.square h1 {
color: white;
}
h5{
padding:15px;
}