我在我的 css 中将以下内联 SVG 定义为背景图像。
div {
border: 1px solid black;
background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 10 10'> <path d='M2 10 L8 0 L10 0 L10 10' fill='%238A92DF'></path></svg>");
background-repeat: no-repeat;
background-position: center center;
background-size: 100%;
}
它在 Chrome、Firefox 和 Edge 中运行良好,但在 Internet Explorer 11 中失败。为什么?