如何阻止文本在表格中垂直居中



这是制作表格的html代码:

<table border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td>
      <div class="profile">
        <img src="http://www.teleread.com/wpcontent/uploads/2009/05/image18.png" />
      </div>
    </td>
    <td>Hello</td>
  </tr>
</table>

这是 css:

.profile img {
    width: 120px;
    height: 125px;
    float: left;
    margin-right: 4px;
    margin-top: 4px;
    margin-bottom: 4px;
    border: 1px #cc1212 solid;
    clear: both;
}

以下是在 jsfiddle 上运行的代码:

http://jsfiddle.net/Yeqnn/

问题:"你好"一词在右列中垂直居中

我该如何解决这个问题?顺便说一句,图像必须在表格中并向左浮动才能与我当前的主题一起使用......任何想法,如果是这样,请留下答案。

只需将vertical-align: top;放在<td>元素上即可。

演示

相关内容

  • 没有找到相关文章

最新更新