Skip to content

Instantly share code, notes, and snippets.

@justinallen
Created September 16, 2017 01:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinallen/a3f533459bc5c533e6b664f9a01d38df to your computer and use it in GitHub Desktop.
Save justinallen/a3f533459bc5c533e6b664f9a01d38df to your computer and use it in GitHub Desktop.
Simple SVG Shape: X
Display the source blob
Display the rendered blob
Raw
<svg width="200px" height="200px" viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg">
<!-- diagonal line -->
<line x1="10" y1="10" x2="90" y2="90"
style="stroke-width: 10; stroke: gray"/>
<line x1="10" y1="90" x2="90" y2="10"
style="stroke-width: 10; stroke: gray"/>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment