智能 gwt 样式属性

发布于 2025-01-05 10:21:47 字数 478 浏览 0 评论 0原文

我无法更改 HTMLFlow 的属性,我想使用我为 HTMLFlow 定义的 css,然后在构造函数中为 FontSize 设置属性,但没有任何变化。 首先,我像这样扩展 HMTLFlow。

class MyHTMLFlow extends HTMLFlow{
public MyHTMLFLow(width, fontSize){
setStyle("myHtmlFlow");
//here i tried all posibilites but nothing works
setAttribute("fontSize",fontSize);
getElement().getStyle().setProperty("fontSize",fontSize);
//the width works ok
setWidth(width);

}

.myHtmlFlow{
width:250;
font-size:12px;
}

请帮助我定义 HTMLFlow 大小。

I cannot change attributes of HTMLFlow, i would like to use my defined css for the HTMLFlow and then setAttribute for FontSize in the constructor but nothing changes.
First I extend HMTLFlow like this.

class MyHTMLFlow extends HTMLFlow{
public MyHTMLFLow(width, fontSize){
setStyle("myHtmlFlow");
//here i tried all posibilites but nothing works
setAttribute("fontSize",fontSize);
getElement().getStyle().setProperty("fontSize",fontSize);
//the width works ok
setWidth(width);

}

.myHtmlFlow{
width:250;
font-size:12px;
}

Please help me to make HTMLFlow size defined.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼中杀气 2025-01-12 10:21:47

使用 setStyleName,我使用了它,它可以工作:

HTMLFlow newsFlow = new HTMLFlow();
newsFlow .setPadding(7);
newsFlow .setStyleName("plSectionText");

与我的 css:

.plSectionText {
font-size: 1.3em;

}

Use setStyleName, I used this and it works:

HTMLFlow newsFlow = new HTMLFlow();
newsFlow .setPadding(7);
newsFlow .setStyleName("plSectionText");

with my css:

.plSectionText {
font-size: 1.3em;

}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文