Created
December 22, 2013 10:33
-
-
Save SomMeri/8080666 to your computer and use it in GitHub Desktop.
Demo for Properties Merging and Transform less.js Issues
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html><head><style> | |
div{ | |
width:300px; | |
height:100px; | |
} | |
div#spaces{ | |
background-color:yellow; | |
-webkit-transform: skew(30deg) rotate(30deg) translate(50px,100px); | |
transform: skew(30deg) rotate(30deg) translate(50px,100px); | |
} | |
div#commas { | |
background-color:red; | |
-webkit-transform: skew(30deg), rotate(30deg), translate(50px,100px); | |
transform: skew(30deg), rotate(30deg), translate(50px,100px); | |
} | |
</style></head><body> | |
<div id="spaces">Spaces only spaces, spaces only spaces, spaces only spaces</div> | |
<div id="commas">Commas only commas, commas only commas, commas only commas</div> | |
</body></html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment