Skip to content

Instantly share code, notes, and snippets.

@jtwalters
Last active August 29, 2015 14:15
Show Gist options
  • Save jtwalters/ac8aad6f31e0523c4d63 to your computer and use it in GitHub Desktop.
Save jtwalters/ac8aad6f31e0523c4d63 to your computer and use it in GitHub Desktop.
CSS Workaround: 1 pixel border with percentage width columns
.parent {
position: relative;
}
.parent:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid green;
border-width: 1px 1px 0 0;
z-index: 5;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment