如何获取gwt中css样式属性的值

发布于 2024-11-24 09:39:48 字数 81 浏览 1 评论 0原文

是否可以从类中获取面板边框的宽度和/或其他 css 样式属性值? (如果 css 样式属性已使用 uibinder 中的 ui:style 声明)。

Is it possible to get the width of a border for a panel, and/or other css style attributes values from a class? (if the css style attributes has been declared using ui:style from uibinder).

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

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

发布评论

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

评论(1

仅一夜美梦 2024-12-01 09:40:28

可以使用 com.google .gwt.dom.client.Style。 UIObject(以及 Widget)具有返回 DOM 元素的 getElement() 方法。

尝试 getElement() -> getStyle() ->; getBorderWidth()。在 Style 类中,有许多 CSS 属性的适当方法。对于其他 props Style 有 getProperty(String) 方法(例如获取“backgroungPosition”)。这也适用于 ui:style。

It's possible to do with the com.google.gwt.dom.client.Style. UIObject (so as the Widget) has the getElement() method which returns DOM Element.

Try getElement() -> getStyle() -> getBorderWidth(). In the Style class there are appropriate methods for many CSS properties. For the other props Style has getProperty(String) method (to get "backgroungPosition" for example). This should work for ui:style as well.

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