Created
February 21, 2018 22:01
-
-
Save freelancedaddytv/d9c703722451fb72fcd114418f03feed to your computer and use it in GitHub Desktop.
Perfect Simple Full Width Background Inside Container
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
.yourelement { | |
background-image:url('yourimage.jpg'); // Use background-color for background color | |
background-position: center center; | |
background-size: cover; | |
background-repeat: no-repeat; | |
width: 100vw; | |
position: relative; | |
margin-left: -50vw; | |
left: 50%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment