如何在IE11中删除对象SVG中的轮廓/边框
我尝试使用border:0 & outline: 0
,但是没有用。仅在IE中运行Outine。
我需要在文本SVG内容下方加边框
<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>
答案 0 :(得分:0)
SVG边境电话stroke
尝试使用以下方法将其删除:
# this has to be executed BEFORE any use of `mylib.myfun`
import mylib
def patch_myfun():
realfun = mylib.myfun
if mylib.version < needed:
# Env 1
def patched(*args, extra_arg=None):
return realfun(*args)
else:
# Env 2
def patched(*args, extra_arg=None):
return realfun(*args, extra_arg=extra_arg)
mylib.myfun = patched
patch_my_fun()