ICEFACES commandButton title属性是否具有粗体文本的样式?

时间:2011-05-04 06:32:02

标签: html css jsf icefaces

使用ICEFACES,我需要一个“commandButton”的title属性,使其部分字符变为粗体。

我的意思是,有:

<ice:commandButton style="width:8%" rendered="true" title="Michael air Jordan" actionListener="#{someBean.write}" />

我希望例如title属性中的“air”一词是粗体。迈克尔乔丹没有大胆和空气大胆 - &gt;迈克尔空气乔丹

我尝试将<b>air</b>放在属性标题中,但它不起作用。

这可能吗?

提前致谢!!

1 个答案:

答案 0 :(得分:0)

<强>编辑:

我不认为可以使用HTML按钮完成。您无法在valuetitle属性中呈现HTML,因此无法在IceFaces按钮中执行此操作,该按钮基本上会转换为<input type="submit"...>标记。

但是这个问题可以帮助你实现你想要的目标:Is it possible to format an HTML tooltip (title attribute)?