Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<title>filter() function with repeating-linear-gradient</title>
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
<link rel="match" href="filter-function-repeating-linear-gradient-ref.html">
<style>
div {
background-image: filter(repeating-linear-gradient(red, red 10px, black 10px, black 20px), invert(1));
width: 400px;
height: 400px;
color: purple;
}
</style>
<div>This text should be purple on a background with a striped blue gradient.</div>
</html>