Skip to content

Instantly share code, notes, and snippets.

@abernier
Created April 6, 2015 23:33
Show Gist options
  • Save abernier/8d9b109e150b883ed9c2 to your computer and use it in GitHub Desktop.
Save abernier/8d9b109e150b883ed9c2 to your computer and use it in GitHub Desktop.
rect {fill:url(#Gradient-1);}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<svg>
<defs>
<linearGradient id="Gradient-1"
x1="0" y1="0" x2="100%" y2="0">
<stop offset="0%" stop-color="lightblue" />
<stop offset="100%" stop-color="#ef5b2b" />
</linearGradient>
</defs>
<rect x="0" y="0" width="200" height="100" stroke="#333333" stroke-width="4px" />
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment