Skip to content

Instantly share code, notes, and snippets.

@bmvakili
Last active August 29, 2015 14:13
Show Gist options
  • Save bmvakili/6665ce80d83cc6c51643 to your computer and use it in GitHub Desktop.
Save bmvakili/6665ce80d83cc6c51643 to your computer and use it in GitHub Desktop.
25x25 checker board css
.box-wrapper {
width: 250px;
height: 250px;
}
.box-wrapper > .box{
background: #000;
width: 8px;
height: 8px;
float: left;
margin: 1px;
}
.box-wrapper > .box-alt {
background: #999;
}
.box-wrapper > .box:hover {
background: #00ff00;
}
.box-wrapper > .highlight {
background: #00ff00 !important;
}
.box-wrapper > .box.highlight-locked {
background-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment