Created
January 7, 2018 01:35
-
-
Save josephmaxim/3d27ed16b02441a9c0892a89578d42d5 to your computer and use it in GitHub Desktop.
Skewed Container Example CSS
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
/* App.css */ | |
.bg-image1 { | |
background: url('https://source.unsplash.com/4uojMEdcwI8/1600x900') no-repeat center; | |
background-size: cover; | |
width: 100%; | |
min-height: 600px; | |
color: #fff; | |
} | |
.container { | |
width: 980px; | |
margin: 0 auto; | |
padding: 100px 0px; | |
text-align: center; | |
} | |
.bg-image2 { | |
background: url('https://source.unsplash.com/C86mMbDWL-I/1600x900') no-repeat center; | |
background-size: cover; | |
width: 100%; | |
min-height: 600px; | |
color: #fff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment