我有一个向左浮动的跨度标签,由于某种原因,它向上移动到段落文本的其余部分之上,实际上在 ie8 和 ie7 中被切断了。文本在 ie9 中显示良好,但显示在段落中其余文本的上方。span 标签的 CSS 是:
.stat {
font: 64px/100% @numbersFont;
letter-spacing: -3px;
color: @orange;
float: left;
margin: 0 15px 5px 0;
}
html是:
<p>
<span class="stat">10x</span>
One <a title="Fidelity® Charitable Gift Fund Volunteerism and Charitable Giving in 2009" href="http://www.fidelitycharitable.org/docs/Volunteerism-Charitable-Giving-2009-Executive-Summary.pdf" target="_blank">study on volunteerism</a> found “on average, those who have volunteered in the last 12 months donate ten times more money to charities than non-volunteers.”
</p>
有什么想法会导致文本像那样颠簸吗?