8

我需要在表格单元格的顶角放置一个元素,并且文本应该堆叠在底部。我使用 vertical-align: bottom 将所有文本向下移动,但现在我遇到了顶部元素的问题,因为 table-cell 不支持相对定位......任何想法如何做到这一点?

<div style = "display: table-cell; vertical-align: bottom">
    <div class = "top"> Top corner</div>
    <h2> some text in the bottom </h2>
    <h3> some more text in the bottom </h3>
</div>

编辑:它应该看起来像这样

+-----------+   +-----------+  +------------+
|top text   |   |top text   |  |top text    |
|           |   |           |  |            |
|some long  |   |           |  |            |
|text       |   |           |  |            |
|more long  |   |           |  |            |
|text       |   |           |  |            |
|end of     |   |           |  |some text   |
|text       |   |text       |  |text        |
|<button>   |   |<button>   |  |<button>    |
+-----------+   +-----------+  +------------+

这一切都包含在一个带有 display:table 的 div 中。我想在这里使用 display:table-cell 的原因是保持这些列的高度相同,并且仍然可以灵活地适应列中不同长度的文本。

4

2 回答 2

3

http://jsfiddle.net/Hwvd5/

基本上我所做的是将一个全尺寸的包装器 div 放入其中,即position: relative. 希望这适用于跨浏览器,仅在铬中测试...

这种方法的问题:您将无法让浏览器自动为与内容匹配的列选择高度而不让它们重叠。:( 我想不出办法来解决这个问题。

来自 JSFiddle 的文件

<br /> <br />

<div class="table">
    <div>
        First cell  <br />    
        First cell  <br />    
        First cell  <br />    
        First cell  <br />    
        First cell  <br />    
        First cell  <br />    
        First cell  <br />    
        First cell  <br />    
    </div>
    <div>
        <div class="wrapper">
          <div class = "top"></div>
          <h2> some text in the top </h2>
          <h3> some more text in the bottom </h3>
        </div>
    </div>
</div>

CSS:

.top {
    position: absolute;        
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: red;
}

h3 {
    position: absolute;
    bottom: 0;    
}

.table {
    display: table-row;
}

.table > div {
    display: table-cell; 
    vertical-align: bottom; 
    border: 1px solid black; 
    padding: 10px; 
    height: 200px;   
}

.table > div > div.wrapper {
    position: relative; 
    width: 100%; 
    height: 100%;   
}​
​
于 2012-11-11T01:12:29.737 回答
2

将此添加到<td>

style="vertical-align:top"
于 2016-07-27T11:46:18.853 回答