I have a question regarding this particular code snippet
.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;
}
One thing that caught my attention is that when the "content" has any value other than two apostrophes, the before and after images fail to appear. Can someone shed light on the significance of using two apostrophes in this context? Thank you.