这是我有疑问的代码
.store {
display: block;
position: relative;
}
.store:before, .store:after {
display: block;
position:absolute;
content:'';
}
.store:before {
background: url(store-before.png);
height: 23px;
width: 54px;
top:-3px;
left:-3px;
}
.store:after {
background: url(store-after.png);
height: 20px;
width: 41px;
bottom:-3px;
right:-3px;
}
我注意到,当“内容”是两个撇号之外的任何内容时,之前和之后的图像都不会出现。有人可以解释这两个撇号的含义吗?谢谢。