Skip to content

Instantly share code, notes, and snippets.

@d3byex
Created November 16, 2015 04:00
Show Gist options
  • Save d3byex/1a8236cb9b98ecb7397b to your computer and use it in GitHub Desktop.
Save d3byex/1a8236cb9b98ecb7397b to your computer and use it in GitHub Desktop.
D3byEX 3.9
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="D3byEX 3.9">
<meta charset="utf-8">
<title>3.9 Styles</title>
<style>
svg rect { fill: red; }
svg rect#willBeGreen { fill: green; }
</style>
</head>
<body>
<svg width="500" height="500">
<rect x="10" y="10" width="50" height="50" />
<rect x="70" y="10" width="50" height="50" id="willBeGreen" />
<rect x="130" y="10" width="50" height="50" style="fill:blue" />
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment