Skip to content

Instantly share code, notes, and snippets.

View JarrydTrokis's full-sized avatar
🐢
Faster than ever.

Jarryd JarrydTrokis

🐢
Faster than ever.
  • England
View GitHub Profile
@JarrydTrokis
JarrydTrokis / breakout_of_container.css
Created March 3, 2017 09:29
This is a little snippet from RDW that allows a box to 'break out' of it's max-width container.
.container {
max-width: 1024px;
margin: 0 auto;
}
.breakout {
position: relative;
left: 50%;
transform: translate(-50%, 0);
width: 100vw;