SVG drop shadow using css3

Here’s an example of applying dropshadow to some svg using the ‘filter’ property. If you want to control the opacity of the dropshadow have a look at this example. The slope attribute controls how much opacity to give to the dropshadow. Relevant bits from the example: Box-shadow is defined to work on CSS boxes (read: … Read more

Add stroke around text – on the outside – with css?

The -webkit-text-stroke doesn’t support placing the stroke on the outside of the text as this CSS-Tricks atricle explains: The stroke drawn by text-stroke is aligned to the center of the text shape (as is the default in Adobe Illustrator), and there is currently no option to set the alignment to the inside or outside of … Read more

External CSS not working

You can’t have spaces in a URL, try changing the space to its ASCII character: %20 so it would look like this: Or what I would normally do is use proper file naming conventions, either camel case (every word [ besides the first one] starts with an upper case letter) or use underscores between the … Read more