添加一些“间隔物”到一张桌子

发布于 2024-11-06 01:03:24 字数 303 浏览 0 评论 0原文

这是我的小提琴:

http://jsfiddle.net/6yU6N/

这是我想要完成的任务的模型:

在此处输入图像描述

如您所见,我想在标题和标题之间添加一个微小的空格首先“挑选容器”。并在每个拾取容器之间添加空格。

做什么最好呢? <代码>

Here's my fiddle:

http://jsfiddle.net/6yU6N/

Here's a mockup of what I want to accomplish:

enter image description here

As you can see, I want to add a tiny space between the header and the first "pick container." And to add a space between each pick container.

What's the best what to do this?

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

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

发布评论

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

评论(1

爱本泡沫多脆弱 2024-11-13 01:03:24

您可以在需要一些空间的地方使用它:

....
<tr class="big_gap">
  <td colspan="4"></td>
</tr>
...
<tr class="small_gap">
  <td colspan="4"></td>
</tr>
....

<style>
  .big_gap td {
    height: 19px;
  }

  .small_gap td {
    height: 10px;
  }

</style>

这样您就可以为之间的间隙提供特定的外观。
如果表现不佳,您可以添加一个  在  

you can use this where you need some space:

....
<tr class="big_gap">
  <td colspan="4"></td>
</tr>
...
<tr class="small_gap">
  <td colspan="4"></td>
</tr>
....

<style>
  .big_gap td {
    height: 19px;
  }

  .small_gap td {
    height: 10px;
  }

</style>

This way you can give the specific appearance to the gap in between.
And if it doesnt behave well you can add a   in the <td colpan="4"> </td>

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