stretch div to full width code example
Example 1: stretch div to full height
#root {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
}
Example 2: how do i make a div full width with css
.row-full{
width: 100vw;
position: relative;
margin-left: -50vw;
height: 100px;
margin-top: 100px;
left: 50%;
}