无法更改GXT文本区域中的字体系列

时间:2017-06-08 10:51:34

标签: java html css gwt gxt

我无法更改GXT文本区域的默认字体系列。我尝试过使用StyleInjector和CSS。但它没有得到更新。你能帮我吗?

TextArea textArea = new TextArea();
textArea.setStyleName("gxtTextArea");

在CSS文件中,我给出了,

.gxtTextArea {
    font-family: Arial !important; 
    /* color: red !important;
    font-size: 24px !important;
    font-style: bold !important;        
    font-weight: bold !important; */
} 

1 个答案:

答案 0 :(得分:2)

您也可以使用addStyleName而不是setStyleName。

TextArea textArea = new TextArea();
textArea.addStyleName("gxtTextArea");

在CSS方面,将其更改如下。

.gxtTextArea * {
    font-family: Arial !important; 
    /* color: red !important;
    font-size: 24px !important;
    font-style: bold !important;        
    font-weight: bold !important; */
 }