Skip to content

Instantly share code, notes, and snippets.

@imevro
Created November 17, 2013 20:19
Show Gist options
  • Save imevro/7517780 to your computer and use it in GitHub Desktop.
Save imevro/7517780 to your computer and use it in GitHub Desktop.
Simple way to create stacked blocks with right :hover border
.blocks-stacked {
.block {
border: 1px solid #eee;
margin-left: 0;
margin-right: 0;
z-index: 1;
&:hover {
border-color: blue;
z-index: 2;
}
&.block + .block {
margin-left: -1px;
}
}
}
// I'm using Twitter Bootstrap and making columns with them
@imevro
Copy link
Author

imevro commented Nov 17, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment