css make div width of screen code example
Example 1: width in % of a screen css
1vw = 1% of viewport width
1vh = 1% of viewport height
Example 2: css set div width to screen
.container{
width:100%;
}
1vw = 1% of viewport width
1vh = 1% of viewport height
.container{
width:100%;
}