Firefox无法正确渲染SVG图像边框

时间:2015-03-01 19:20:15

标签: html css firefox svg border-image

我使用下面的图片(SVG)作为border-image

wood border

Chrome Safari 中完美运行,但 Firefox 具有不同的渲染效果。有什么方法可以解决这个问题吗?

Chrome和Safari:

webkit

火狐:

gecko

和... 我的代码:



body { margin: 10px; }

.box {
  background: beige;
  border: 20px solid sandybrown;

  -o-border-image: url(https://imgh.us/wood-border.svg) 70 stretch;
  -moz-border-image: url(https://imgh.us/wood-border.svg) 70 stretch;
  -ms-border-image: url(https://imgh.us/wood-border.svg) 70 stretch;
  -webkit-border-image: url(https://imgh.us/wood-border.svg) 70 stretch;
  border-image: url(https://imgh.us/wood-border.svg) 70 stretch;

  height: 100px;
}

<div class="box">
</div>
&#13;
&#13;
&#13;

0 个答案:

没有答案