Container
Class | value |
---|---|
Fullwidth
fullwidth
will break a child out of it's parent container
/* break child element out of parent container */
.fullwidth {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}