• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

垂直均匀排列列表项

用户头像
it1352
帮助1

问题说明

我正在尝试使用CSS来垂直排列列表项的方式.

I am trying to find a way with CSS to evenly space list items vertically.

我希望每个列表项都具有固定不变的高度.我希望每个列表项之间的边距能够自动strecth,以便它具有相同的空间量,但margin:auto;无法正常工作.

I want each list item to have a fixed height that doesn't change. I want the margin in between each list item to automatically strecth so it has the same amount of space but margin:auto; is not working.

以下是代码段:

.container {
  border: 1px solid black;
  height: 500px;
  width: 400px;
}

.spaced {
  padding: 0;
  list-style: none;
}
.spaced li {
  border: 1px solid blue;
  height: 60px;
  margin: 15px;
}
<div class="container">
  <ul class="spaced">
    <li>item </li>
    <li>item </li>
    <li>item </li>
    <li>item </li>
  </ul>
</div>

因此,使用此代码段,我需要它,以便蓝色框保持相同的高度,并在垂直方向上均匀分布.如果黑框的高度发生变化,则蓝框仍将均匀分布.

So with this snippet I need it so the blue boxes will remain the same height and be spaced evenly vertically. If the black box changes in height then the blue boxes will still be evenly spaced.

我该怎么做?

正确答案

#1

您可以使用 Flexbox

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhchabbj
系列文章
更多 icon
同类精品
更多 icon
继续加载