Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created November 27, 2020 14:10
Show Gist options
  • Select an option

  • Save yousufansa/c2a570b68b05fde2bfcdc3e55e8e1951 to your computer and use it in GitHub Desktop.

Select an option

Save yousufansa/c2a570b68b05fde2bfcdc3e55e8e1951 to your computer and use it in GitHub Desktop.
Stretch the Content to Screen Width
.stretch-full-width {
width: 100vw;
position: relative;
margin-left: calc(-50vw + 50% - 8px);
}
@media (max-width: 991.98px) {
.stretch-full-width {
margin-left: calc(-50vw + 50%);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment