Skip to content

Commit

Permalink
Comment out vendor prefixed CSS attributes
Browse files Browse the repository at this point in the history
Comment out vendor prefixed CSS attributes to make the css file pass
validation.
  • Loading branch information
Ajedi32 committed Dec 18, 2013
1 parent 331e3ac commit 981e0a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/stylesheets/checkers_board.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
border-spacing: 0;
border: 2px solid black;
transition: transform 1s;
-webkit-transition: -webkit-transform 1s;
/*-webkit-transition: -webkit-transform 1s;*/
}

.checkers-board td {
Expand Down Expand Up @@ -75,7 +75,7 @@

.upside-down {
transform: rotate(180deg);
-webkit-transform: rotate(180deg);
/*-webkit-transform: rotate(180deg);*/
}

.hidden {
Expand Down

0 comments on commit 981e0a7

Please sign in to comment.