Skip to content

Instantly share code, notes, and snippets.

@ratracegrad
Created September 4, 2017 20:19
Show Gist options
  • Save ratracegrad/ad4f0a804d3181445cd04468deb79d25 to your computer and use it in GitHub Desktop.
Save ratracegrad/ad4f0a804d3181445cd04468deb79d25 to your computer and use it in GitHub Desktop.
Center image fullscreen using flexbox
.flexContainer {
display: flex;
}
.flexCenter {
justify-content: center;
}
.fullHeight {
height: 100vh;
}
.itemCenter {
align-items: center;
}
.fullHeight {
height: 100vh;
}
.centerImage {
background: url('images/ocean.jpg') center;
background-size: cover;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment