我有一个宽度为533px的div,在div里面我有svg元素,宽度相同,可以容纳一些rect元素。
<div style="left: 47px; top: 479px; width: 533px; height: 56px; position: absolute;>
<svg style=" width: 533px; height: 56px;>
....
// Some rect Element inside the svg
</svg>
<div>
rect的宽度高于svg元素,因此我使用clippath剪切了rect。现在看不到svg的rect药水了。但水平滚动条在窗口中被启用到矩形宽度。这只发生在IE中。在其他浏览器中它的工作正常。
如何解决这个问题?
先谢谢
答案 0 :(得分:0)
这是您的浏览器兼容性问题,您必须更新浏览器或使用
<style>overflow:hidden;</style>
将此代码写入标题或主css中。 希望它能起作用