Skip to content

Instantly share code, notes, and snippets.

@devdays
Created November 30, 2014 23:09
Show Gist options
  • Save devdays/59a7656e44c0bdb6d4b9 to your computer and use it in GitHub Desktop.
Save devdays/59a7656e44c0bdb6d4b9 to your computer and use it in GitHub Desktop.
SVG Rectangles
Display the source blob
Display the rendered blob
Raw
<svg id="svgrect" height="100" width="300" xmlns="http://www.w3.org/2000/svg">
<!-- Show outline of canvas using 'rect' element -->
<rect width="75" height="120"
fill="none" stroke="blue" stroke-width="2"/>
<rect x="100" width="75" height="120"
fill="none" stroke="blue" stroke-width="2"/>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment