content 属性

by zicai

HTML

<div class="container">
    我写在html里
</div>

CSS

.container:before{
    content:'我写在CSS里,:before';
}
.container:after{
    content:'我写在CSS里,:after';
}