所以我有这个html:
<p>here is some <span>random</span> content that I might use</p>
这个CSS:
span{
position: relative;
}
span:before{
content: 'this is more content';
position:absolute;
color: red;
top: -15px;
}
发生的情况是,用 css 添加的内容继承了span
(单词'random')的宽度。有没有办法删除继承的宽度而不添加宽度值来覆盖继承
这是演示http://jsfiddle.net/7dBbZ/1/ 谢谢</p>