<div class="box">文字內容</div>
.box {
background-color: #aaa;
}
.box:before {
content: '我是 before';
display: block;
width: 100px;
height: 100px;
background-color: red;
}
.box:after {
content: '我是 after';
display: block;
width: 100px;
height: 100px;
background-color: red;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.