4

如何在 java gwt 中绘制一条水平线,类似于 HTML 中的“< hr >”标签?我尝试使用

 com.google.gwt.user.client.Element bottomLine = DOM.createDiv();

但这在IE中不起作用......

4

2 回答 2

14

您可以使用 HTML 小部件在页面中添加所需的任何 html

HTML html = new HTML("<hr  style=\"width:100%;\" />")
rootPanel.add(html); // or add it inside another widget

或者您可以在 Panel 上使用 css 并定义border-bottom 属性(如果您有一个跨越整个页面的面板)。

于 2013-01-31T12:45:29.873 回答
5

Document.get(). createHRElement()?

于 2013-01-31T12:38:17.373 回答