我尝试使用图像和 css 伪元素添加框阴影和渐变边框。
我试过那个代码:
.box:before {
content: url('box-shadow.png');
position: absolute;
width: auto;
height: auto;
max-width: 100%;
z-index: -1;
bottom: -9px;
line-height: 0;
}
.box:after {
content: url('box-border.png');
position: absolute;
width: auto;
height: auto;
max-width: 100%;
bottom: -5px;
right: 0px;
}
但是当父 div 调整大小时,添加的图像不会调整大小,而它是通过手动添加图像来工作的。
看到那个小提琴http://jsfiddle.net/5TG3E/2/