我有一个工具提示,应用了这样的标题属性:
<img src="myGif.gif" border="0" class="tooltip" alt="Help"
title="This is a world of mad people who don't believe in what they are doing and as such they are extremely risky and will lead to the destruction of the society as we call it"/>
问题是,我希望内容出现在一行中,但它在 IE 和 Mozilla 中被分解了。
在 ie(7 和 8) 中,内容呈现为三行,如下所示:
This is a world of mad people who don't believe in what they are doing
and as such they are extremely risky and will lead to the
destruction of the society as we call it
在 Mozilla 中,它呈现如下:
This is a world of mad people who don't believe in what they are doing and as such they are
extremely risky and will lead to the destruction of the society as we call it
但我希望内容在一行中呈现。
所以我需要使用 javascript 或 CSS 或 jquery 来渲染它。但是,直到现在我都无法这样做。