0

我有一个里面有 div 的列表

<ul>
    <li>
        <div class="date">today</div>
        <div class="desc">lorem ipsum</div>
        <div class="action">
            <p>
                <a class="button">X</a>
            </p>
        </div>
    </li>
    <li>....</li>
    <li>....</li>
</ul>

如何在 div.action 中垂直对齐 a.button?

该列表的 CSS 是使用 Susy 生成的,CSS 看起来像这样:

ul {
  list-style: none outside none;
}
li {
  margin-left: 12.766%;
  margin-right: 12.766%;
  margin-bottom: 10px;
  background-color: #eee;
  display: block;
}
li:after {
  clear: both;
  content: "";
  display: table;
}

.date {
  float: left;
  margin-right: 2.12766%;
  width: 10.6383%;
}
.desc {
  float: left;
  margin-right: 2.12766%;
  width: 74.4681%;
}

.action {
  float: right;
  text-align: center;
  margin-right: 0;
  width: 10.6383%;
}

我不知道 LI 的高度,因为“desc”文本可以是任意长度。

这是codepen.io的代码-> http://codepen.io/anon/pen/CFhos

4

3 回答 3

1

Flexbox can align just about anything - even floated elements...

Just add the following rules to the li:

display: flex;
align-items: center; /*align vertical */

Updated CODEPEN

于 2014-09-29T08:20:17.463 回答
1

您可以设置按钮的样式来完成它,如下所示:

.button{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

这里的例子:http: //jsfiddle.net/4amdxtq8/

于 2014-09-29T08:24:41.593 回答
0

您可以在不浮动的情况下执行此操作:

ul {
  list-style: none outside none;
}
li {
  display: table;
  margin-left: 12.766%;
  margin-right: 12.766%;
  margin-bottom: 10px;
  background-color: #eee;
}
p {
  display: table-cell;
  margin: 0;
  padding: 0;
}
li:after {
  clear: both;
  content: "";
  display: table;
}

.date {
  display: table-cell;
  vertical-align: middle;
  margin-right: 2.12766%;
  width: 10.6383%;
}
.desc {
  display: table-cell;
  vertical-align: middle;
  margin-right: 2.12766%;
  width: 74.4681%;
}

.action {
  display: table-cell;
  vertical-align: middle;
  margin-right: 0;
  width: 10.6383%;
}

http://codepen.io/anon/pen/yxhkA

于 2014-09-29T08:21:30.777 回答