asp net imagebutton替代文本多行

时间:2012-04-23 22:04:08

标签: text asp-classic imagebutton .net alternate

我想知道是否有可能使alernate文本多行,而不是单行? 谢谢,橡树。

2 个答案:

答案 0 :(得分:0)

嗯,在某些浏览器上你可以像这样控制属性,但它也会影响图像本身的风格。

<style>
img[alt] { border: 1px solid #000;display: block;  }
</style>

在我的FF上显示所有包装的文字

答案 1 :(得分:0)

另一种可能性

<img id="img1" width=50 src="foo.jpg" alt="come here" 
  onmouseover="this.style.display='block';this.alt='looo oooooooo oooooooooo oooooooooo oooooong'"
  onmouseout="this.style.display='inline';this.alt='come here'"
/>