如何background-image
repeat
使用 cap insets 定义?我希望图像无边框重复。是否可以在 CSS 中重复(平铺)或拉伸中间?
第一个(较小的)圆角矩形是我的 PNG 图像。红线显示我要定义的帽子插图。后者(更大)应显示为结果。
这看起来你可以通过使用纯 css3 来解决这个问题
.box {
background: white;
-moz-border-radius: 15px;
border-radius: 15px;
-moz-box-shadow: inset 0 0 10px #000000;
-webkit-box-shadow: inset 0 0 10px #000000;
box-shadow: inset 0 0 10px #000000;
}