How to remove the Outline/Border in Object SVG in IE11
I tried with border:0 & outline: 0
but it not working. Outine coming only in IE..
I need to border below the text SVG Content
<object> SVG Content
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px">
<rect x="10" y="10" width="80" height="80"/>
</svg>
</object>
SVG border calls stroke
try remove it with:
svg {
stroke: transparent;
stroke-width: 0px;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With