表中TD高度问题

发布于 2024-12-11 11:39:48 字数 1107 浏览 0 评论 0原文

我有一个具有以下结构的表 -

**HTML:**
    <table>
        <tr class="table_row row_over">
          <td><input type="checkbox" name="check_data_1" class="check_box" /></td>
          <td>
              Data1
          </td>
          <td>$0.000</td>
          <td>$0.000</td>
          <td>$0.000</td>
          <td>
              <span class="row_controls">
                  <a href="#" class="icon_22 icon_delete">
                     <span>Delete</span>
                  </a>
              </span>
          </td>
        </tr>
    </table>

**CSS:**
.icon_delete {
    background-position: 0 0px;
}
.icon_22 {
    background-image: url("../images/icon_sprite.png");
    background-repeat: no-repeat;
    display: inline-block;
    height: 24px;    
    width: 24px;
    margin-right: 5px;
}

问题: TD 的高度根据图标高度而增加。它增加了 TD 高度并与其他 td 错位,因为 TD 底部仍然留有空间。

预期作为附加图像:

在此处输入图像描述

I am having a table with the below structure -

**HTML:**
    <table>
        <tr class="table_row row_over">
          <td><input type="checkbox" name="check_data_1" class="check_box" /></td>
          <td>
              Data1
          </td>
          <td>$0.000</td>
          <td>$0.000</td>
          <td>$0.000</td>
          <td>
              <span class="row_controls">
                  <a href="#" class="icon_22 icon_delete">
                     <span>Delete</span>
                  </a>
              </span>
          </td>
        </tr>
    </table>

**CSS:**
.icon_delete {
    background-position: 0 0px;
}
.icon_22 {
    background-image: url("../images/icon_sprite.png");
    background-repeat: no-repeat;
    display: inline-block;
    height: 24px;    
    width: 24px;
    margin-right: 5px;
}

Problem:
Height of the TD increases based on icon height. It increases the TD height and mis-allign with other td, where as I have still space left at bottom of TD.

Expected as attached image herewith:

enter image description here

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

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

发布评论

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

评论(2

自控 2024-12-18 11:39:48

如果您想将图标对齐到中间,我会这样做:

将图标的 css 更改为 display: block

.icon_22 {
    background-image: url("../images/icon_sprite.png");
    background-repeat: no-repeat;
    display: block;
    height: 24px;    
    width: 24px;
    margin-right: 5px;
}

然后,因为您使用的是 td,为该 td 指定一个类,以便它在中间垂直对齐:

<td class="alignMiddle">

和 CSS:

.alignMiddle {
   vertical-align: middle;
}

if you would like to align the icon to the middle, I would do it like this:

change the icon's css to display: block:

.icon_22 {
    background-image: url("../images/icon_sprite.png");
    background-repeat: no-repeat;
    display: block;
    height: 24px;    
    width: 24px;
    margin-right: 5px;
}

Then, and because you're using a td, specify a class to that td so it aligns vertically in the middle:

<td class="alignMiddle">

and the CSS:

.alignMiddle {
   vertical-align: middle;
}
梦魇绽荼蘼 2024-12-18 11:39:48

除非 .row_controlsposition:relative; 并且图标为 position:absolute;,否则它将成为 正常流程,因此占用空间。

目前您正在使用inline-block。您需要使用定位或浮动技术将其从正常流程中拉出来。

尝试以下作为基础。

.row_controls {
  position: relative;
}

.icon_22 {
  position: absolute;
}

Unless .row_controls is position: relative; and the icon is position: absolute;, it's going to be part of the normal flow and therefore occupy space.

Currently you are using inline-block. You need to pull it out of the normal flow by using positioning or floating techniques.

Try the following as a base.

.row_controls {
  position: relative;
}

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