Created
November 16, 2015 04:00
-
-
Save d3byex/1a8236cb9b98ecb7397b to your computer and use it in GitHub Desktop.
D3byEX 3.9
This file contains hidden or 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> | |
<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