【发布时间】:2014-09-15 01:41:32
【问题描述】:
如题,Internet Explorer 11 是否支持border-image?
因为如果我使用这个 CSS:
.windowtemplate {
border: 18px solid black;
-webkit-border-image: url("../images/windowtemplate/boxtemp.png") 18 18 18 18 round round;
-moz-border-image: url("../images/windowtemplate/boxtemp.png") 18 18 18 18 round round;
border-image: url("../images/windowtemplate/boxtemp.png") 18 18 18 18 18 round round;
}
适用于除 IE11 之外的所有其他浏览器(Chrome、Safari、Firefox)。
还有其他方法可以让边框图像在 IE11 中工作吗?
【问题讨论】:
-
Internet Explorer 11 是否支持边框图像?:答案:Yes。
-
您检查浏览器是否处于 IE11 标准模式?此功能在怪癖模式或兼容模式下不起作用。
标签: internet-explorer internet-explorer-11 css