如何获取gwt中css样式属性的值
是否可以从类中获取面板边框的宽度和/或其他 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以使用 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.