Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要通过我的 GWT 代码在小部件上设置-moz-box-sizing属性。我不想通过 .css 文件执行此操作,但需要在我的 java 代码中执行此操作。我试过了
widget.getElement().getStyle().setProperty("mozBoxSizing", "border-box")
,但这不起作用。有谁知道如何将-moz-box-sizing转换为 GWT 的属性 camelcase 属性?
谢谢!
看来 MozBoxSizing 将是正确的驼峰式。
你试过那个 widget.getElement().setAttribute("style","mozBoxSizing:border-box"); ?