Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的例子在这里
当被告知在 FF 中向右或向左对齐时,徽标看起来很好,并且它们似乎与文本正确换行,但在 IE 中,在第一行文本之后出现了巨大的间隙。
我还创建了浮动左右样式,并尝试应用于徽标,但效果相同。我知道这是 IE 中的一个问题,但我还没有找到解决方法。
不要在 HTML 中使用 align="left" 和 align="right",只需在 floatleft 和 floatright CSS 声明中包含 float 属性:
.floatleft { float:left; padding: 0px 8px 8px 0px; } .floatright { float: right; padding: 0px 0px 8px 8px; }