我正在尝试在不使用图像的情况下制作锯齿状边缘边框,并且我仍然希望支持 IE9 及更高版本。这可能吗?截至目前,它适用于除 IE9 之外的所有应用程序。任何建议都会很棒!非常感谢。
这是我正在使用的代码。
<div class='demo'></div>
/* Jagged Edge */
div {
background: linear-gradient(-135deg, #fff 10px, transparent 0) 0 10px, linear-gradient(135deg, #fff 10px, #333 0) 0 10px;
background-color: #fff;
background-size: 20px 20px;
/* otherwise these will be overridden when you add the inline styles with js. */
background-position: left bottom !important;
background-repeat: repeat-x !important;
padding:1em;
width:100%;
}
这是一个jsfiddle ... http://jsfiddle.net/26uW4/1/
我考虑过使用带有 SVG 的 data-uri。对此有什么想法?我不确定如何做到这一点。