欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

為什么align-items屬性不起作用?它卡在頁面頂部類似于,align-items:flex-start;[重復]

謝彥文2年前9瀏覽0評論

這是對flexbox程序的測試。

以下是我的代碼:

.box-1 {
  background-color: green;
  border-radius: 1rem;
  padding-left: 25px;
  padding-right: 25px;
  width: 50px;
  height: 100px;
}

.box-2 {
  background-color: green;
  padding-left: 25px;
  border-radius: 1rem;
  padding-right: 25px;
  width: 50px;
  height: 100px;
}

.box-3 {
  background-color: green;
  border-radius: 1rem;
  padding-left: 25px;
  padding-right: 25px;
  width: 50px;
  height: 100px;
}

.container {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-evenly;
}

<div class="container">
  <div class="box-1">Item 1</div>
  <div class="box-2">Item 2</div>
  <div class="box-3">Item 3</div>
</div>