是否可以更改rich:simpleTogglePanel的标题样式 ??标题的字体总是"bold",我希望它是正常的。
我尝试用style属性:style="font- size:normal"没有结果。
任何想法?
您是否尝试过将!important
放在样式定义的末尾?style="font-weight:normal !important;"
) ?
而且,我相信您也知道,通常最好在单独的样式表中指定样式。我以这种方式定制了<rich:extendedDataTable
(不确定这是否是黑客,但它对我来说很有效)。在浏览器中打开页面,然后打开开发人员工具(在安装了FireBug的Firefox中按F12,或在Chrome中右键单击rich:SimpleTogglePanel
并单击"Inspect Element")。这将让您看到RichFaces框架使用的CSS定义名称。只需创建一个新的。css文件,并使用您发现RichFaces正在使用的名称定义您想要的样式。
/*This class defines styles for a table cell.*/
/*tableBorderWidth, tableBorderColor border-bottom*/
/*tableBorderWidth, tableBorderColor border-right*/
.rf-edt-c {
border-bottom: 1px solid #021e2f;
border-right: 1px solid #021e2f;
height: auto !important;
min-height: 26px;
}
正如你所看到的,你可能需要在那里指定!important
标签,但它保持你的页面之外的样式…