img 要素で疑似セレクターの前後に使用することは可能ですか? 運が悪いと思っていたので、cssをdivに切り替えたところ、うまくいきました。.page-overhang
クラスは img 要素です。
// page overhang mixin
@mixin overhang {
&:before,
&:after {
position: absolute;
left: 0;
display: block;
width: 10px;
height: 18px;
background: url(../images/sprite.png) no-repeat;
content: "";
}
&:before {
top: -18px;
background-position: 0 -100px;
}
&:after {
bottom: -18px;
background-position: 0 -119px;
}
}
/* scss file */
.page-overhang {
position: relative;
display: block;
@include overhang();
}