我一直在 CSS 中使用 :before 来表示将内容放在选择器之前。我从来没有遇到过任何问题,但是,我偶然发现了一些让我感到困惑的事情,选择器的 :before 是附加在元素内部而不是在它之前。我不明白为什么会这样。
这是一个小提琴:http: //jsfiddle.net/vMtct/1/
这是基本代码:
<div class="block">
<p>But this <p> will have content <em>before</em>.</p>
</div>
.block {
margin: 0 auto;
width: 250px;
height: 250px;
background: #ffffff;
border: 1px solid #cccccc;
padding: 50px; }
.block:before {
background: #eeeeee;
content: "Here is something that print's inside the selector";
display: block;
padding: 20px;
margin-bottom: 20px; }
p:before {
display: block;
content: ">>>"; }