Skip to content

Instantly share code, notes, and snippets.

@miguelgazela
Last active August 29, 2015 14:17
Show Gist options
  • Save miguelgazela/97ea262b72a8c2b1965d to your computer and use it in GitHub Desktop.
Save miguelgazela/97ea262b72a8c2b1965d to your computer and use it in GitHub Desktop.
Front-end CSS - João Pereira
<style>
div {
height: 50px;
width: 100px;
border: 1px dashed black;
margin-bottom: 10px;
}
div:nth-child(2n) {
position: relative;
left: 100px;
}
div:not(:last-child) {
border: 1px solid black;
}
</style>
<div></div>
<div></div>
<div></div>
<div></div>
@miguelgazela
Copy link
Author

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