Skip to content

Instantly share code, notes, and snippets.

@gustavom
Last active August 29, 2015 14:11
Show Gist options
  • Save gustavom/04fce95a9971b37da05b to your computer and use it in GitHub Desktop.
Save gustavom/04fce95a9971b37da05b to your computer and use it in GitHub Desktop.
Simulando nth-child com jquery
<div class="page-group">
<div class="page"></div>
<div class="page"></div>
<div class="page"></div>
</div>
<script>
$(document).ready(function(){
var cont = 1;
$('.page').each(function(){
if((cont%3)==0){
$(this).css({'margin-right':'0px'})
}
cont = cont +1;
});
});
</script>
.page-group{float:left; width:960px;}
.page{float:left; width:306px; height:330px; background:#09C; margin:15px 20px 0 0;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment