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: enter image description here

chrome: enter image description here

is there wrong in code?

using solution this question on bricks.svg appears fix problem.


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -