Flex容器项目不符合高度

时间:2018-05-31 05:04:22

标签: html css css3 flexbox

今天需要CSS flexbox的一些帮助。我相信我已经配置了flexbox,我希望每个列表项都可以堆叠,然后li中的每个div执行一个space-between并使内容在每个div中垂直居中。这是服务于自动完成..它实际显示虽然是:(似乎不尊重高度设置)

enter image description here

我创建了一个代码片段,为了示例,已从angular.io中删除了简化的代码。孤立的代码片段似乎工作正常!你们能看到其他任何可能引起问题的事吗?

ul.search-result {
  margin-top: 4px;
  padding-left: 0;
  outline: 0;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  position: absolute;
  background: white;
  z-index: 99;
  display: none;
  //width: 355px;
  //height: 300px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  
    }
    
    li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;//60px;
    padding: 10px;
    background-color: #E9EDEF;
    cursor: pointer;
    list-style-type: none;
    border: solid 1px red;
    }
<ul class="search-result" style="width:500px;max-height:500px;">
    <li>
      <div class="icon">
        image
      </div>
      <div class="title">
        <div class="name">name</div>
        <div class="location">location</div>
      </div>
      <div class="status">
        status
      </div>
    </li>
    <li>
      <div class="icon">
        image
      </div>
      <div class="title">
        <div class="name">name</div>
        <div class="location">location</div>
      </div>
      <div class="status">
        status
      </div>
    </li>
    <li>
      <div class="icon">
        image
      </div>
      <div class="title">
        <div class="name">name</div>
        <div class="location">location</div>
      </div>
      <div class="status">
        status
      </div>
    </li>
</ul>

1 个答案:

答案 0 :(得分:0)

最后,我简单地重新编写了我的所有CSS和html,以遵循我在对该问题的最终评论中提到的这种方法。

感谢您的麻烦。