css - using SVG image as background in IE -
i having problem using svg image background in ie. works simple svgs not others. have example fiddle here:
html:
<p>svg image not repeating in ie</p> <div id="div1"> </div> <div id="div2"></div> <div id="div3"></div>
css:
div {float: left; margin-left:20px; width:200px; height:300px; border:1px solid black; } #div1 { background:url("https://dl.dropboxusercontent.com/u/74728667/interstate_75_icon.svg"); } #div2 { background:url("https://dl.dropboxusercontent.com/u/74728667/circle.svg"); } #div3 { background:url("https://dl.dropboxusercontent.com/u/74728667/brick.svg"); }
result:
ie:
chrome:
is there wrong in code?
using solution this question on bricks.svg appears fix problem.
Comments
Post a Comment