4
画像とCSS擬似要素を使ってボックスの影とグラデーションの枠線を追加しようとしました。擬似要素を使ってレスポンシブ画像を追加する方法
私は、そのコードを試してみました:親のdivのサイズを変更したときに、それは手動で画像を追加することで機能し、一方、
.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;
}
しかし、追加の画像は、サイズ変更されません。
私は私の側からしてみてくださいhttp://jsfiddle.net/5TG3E/2/
!ありがとうございました! – Laurent