Created
November 27, 2020 14:10
-
-
Save yousufansa/c2a570b68b05fde2bfcdc3e55e8e1951 to your computer and use it in GitHub Desktop.
Stretch the Content to Screen Width
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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