0

我已经为此工作了几个小时:我似乎无法让“标签”div 垂直对齐到它所在的 div 的底部。它所在的 div 水平扩展以填充它所在的 div,这会发生变化水平尺寸,因为它位于带有图像的 div 旁边。我很想让这个“标签” div 贴在它的容器底部,但我似乎无法弄清楚。如果有必要,我也愿意重新组织我的 div。

我试过设置bottom: 0; overflow: hidden; 我试过设置它的容器div position: relative;,它的'position: absolute;

这是 jsfiddle 的链接:http: //jsfiddle.net/29WKX/8/

这是我现在所处的位置:

CSS:

body {
  font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  padding-top: 100px;
  background-color: deepskyblue;
}

    .content{
      background: #fff;
      margin: 0 auto;
      width:720px;
      text-align: center;
      padding: 1px;
      /* border-radius */
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      /* box-shadow */
      -webkit-box-shadow: rgba(0,0,0,0.2) 0px 1px 3px;
      -moz-box-shadow: rgba(0,0,0,0.2) 0px 1px 3px;
      box-shadow: rgba(0,0,0,0.2) 0px 1px 3px;
    }
    .right-pic {
        float: right;
        width: auto;
    }
    .left-pic{
      float: left;
      width: auto;
    }
    .text {
      background-color: lightgray;
      overflow: hidden;
            position: relative;
    }
    .tag{
      background-color: red;
      position: relative;
      bottom: 0;
    }

这是我的 HTML:

<div class="content">
  <div class="right-pic">
    <img src="" width="300px" height="220px" alt="image">
  </div>
  <div class="text">
    <h2>Title</h2>
    <p>this takes up remaining space to the left</p>
  </div>
  <div class="tag">tag</div>
  <div style="clear: both"></div>
</div>
<br />
<div class="content">
  <div class="left-pic">
    <img src="" width="320px" height="200px" alt="image">
  </div>
  <div class="text">
  <h2>Title</h2>
    <p>this takes up remaining space to the left</p>
  </div>
  <div style="clear: both"></div>
</div>
4

1 回答 1

1

如果我理解你的问题是正确的,你需要做的就是添加:

position: relative;

在您的内容元素中。还有一个:

position: absolute;

在你的标签元素中。

请检查这个 JSFiddle

于 2013-11-15T00:01:39.303 回答