GWT UiBinder 边距

发布于 2024-10-17 17:06:05 字数 187 浏览 4 评论 0原文

我有带有子元素的 UiBinder exmaple od FlexTable 。

我有一个问题,因为浏览器会在 Flextable 中的子元素周围以及该表格周围创建一些 px 的边距。我无法摆脱这个边距 - 不可能使用 Firebug 或 CSS 或样式中的属性删除它。

我做错了什么?

最好的

I have UiBinder exmaple od FlexTable with child elements.

I have a problem, because browsers creates a few px of margin all around child elements in Flextable and around this tabel too. I cannot get rid of this margin - it is impossible to delete it with Firebug or with properties in CSS or style.

What am I doing wrong?

best

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

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

发布评论

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

评论(1

半世蒼涼 2024-10-24 17:06:05

您可以使用 CSS 修改 FlexTable(和子元素)的样式:

<ui:style>
  .myTable td {
    border-spacing: 0;
  }
</ui:style>
<g:HTMLPanel>
  <g:FlexTable styleName="{style.myTable}" />
</g:HTMLPanel>

更多信息在这里

You can modify the style of the FlexTable (and child elements) using CSS:

<ui:style>
  .myTable td {
    border-spacing: 0;
  }
</ui:style>
<g:HTMLPanel>
  <g:FlexTable styleName="{style.myTable}" />
</g:HTMLPanel>

More information here

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