SVG Sprites with IE 11
We starting using Gulp Svg Sprite generator but finding that IE 11 does not show the svg sprite. We added the SVG4Everybody.js polyfill but it still wasn't working. Finally, we determined that the #facebook path as the selector but not svg path or symbol path. We did find a workaround since all svg icons had an id, we used the selector symbol[id] path So any symbol element containing the id attribute.
symbol[id] path {
stroke: #ffffff;
}