如何制作彩色标签或在主要表面中的标签后添加一些outputText?

时间:2018-05-17 12:33:10

标签: css primefaces xhtml

enter image description here

我在tabView中有两个标签,我需要另一个标签,如附件中所示。它也可以是任何outputText,但它不起作用。文本的一部分也应该是黑色和另一个红色。 有人知道如何解决这个问题。我一直在尝试很多例子,但没有任何作用。

1 个答案:

答案 0 :(得分:0)

通过以下方式找到了决定:

<p:tab disabled="true"
        titleStyle="font-weight: bold; opacity: 0.9; background-color: #b2bcbe;" >
        <f:facet name="title">
            <h:outputText value="black text" style="color: black;"/>
            <h:outputText value="red text" style="color: red;"/>
        </f:facet>
    </p:tab>