I'm using SVG Font Awesome icons in a simple HTML doc, and I want add shadows to them. So I tried doing...
<div style="text-shadow: 2px 2px 5px #000">
<i class="fa fa-search-plus"></i>
</div>
...but it doesn't work.
So, what is the correct way to do that?