Introducing
Your new presentation assistant.
Refine, enhance, and tailor your content, source relevant images, and edit visuals quicker than ever before.
Trending searches
Alex Walker
@alexmwalker
sitepoint.com
learnable.com
http://petercollingridge.appspot.com/svg-editor
(..as if I need to tell you guys the benefits of CSS)
1) The 'save as' SVG we get from Graphics Applications
1) File size
2) The more powerful, truly 'Web-Ready' SVG we hand code
2) Managability
3) MEDIA Queries!
Say goodbye to Sass, Less, Stylus, etc ...
Say hello to CSS prefixes again
Wordpress, Flickr, IMGUR, etc
I've been using GITHUB to host
Alex Walker
@alexmwalker
sitepoint.com
learnable.com
<svg>
<style>
.rectangles {
fill: red; stroke: white; stroke-width: 4px;
}
</style>
<rect x="10" y="10"
height="50" width="50"
class="rectangles"
/>
</svg>
.. all render SVG as you write/paste it
<svg>
<rect x="10" y="10"
height="50" width="50"
fill="red" stroke="white"
stroke-width="4px"
/>
</svg>
It's full of..... stuff! (like Word HTML)
It ignores the coolest features of SVG
PATTERNs
SYMBOLs
CSS