Skip to content

Instantly share code, notes, and snippets.

@cezarignat
Created January 8, 2019 13:52
Show Gist options
  • Save cezarignat/319414b01b51ad829d07a065af93b78a to your computer and use it in GitHub Desktop.
Save cezarignat/319414b01b51ad829d07a065af93b78a to your computer and use it in GitHub Desktop.
.halfhalf {
display: table;
width: 100%;
}
.half {
position: relative;
display: table-cell;
width: 50%;
padding: 150px 120px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
@media screen and (max-width: 992px) {
.halfhalf .half {
display: block;
width: 100%;
}
.half { padding: 20px; }
.half+.half.gridme {
float: right;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment