Created
February 10, 2015 20:55
-
-
Save tennisonchan/926361bc7c112a8c5879 to your computer and use it in GitHub Desktop.
template for testing new CSS3 functions
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
</head> | |
<style type="text/css"> | |
.css-filter-target { | |
-webkit-filter: hue-rotate(90deg); | |
filter: hue-rotate(90deg); | |
} | |
</style> | |
<body> | |
<img class="css-filter-target" src="https://www.google.com/images/srpr/logo11w.png"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment