Skip to content

Instantly share code, notes, and snippets.

@tennisonchan
Created February 10, 2015 20:55
Show Gist options
  • Save tennisonchan/926361bc7c112a8c5879 to your computer and use it in GitHub Desktop.
Save tennisonchan/926361bc7c112a8c5879 to your computer and use it in GitHub Desktop.
template for testing new CSS3 functions
<!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