“position: absolute” 會與 Flexbox 發生衝突嗎?


絕對定位不會與 Flex 容器發生衝突。您還需要設定父項寬度和值

.parent {
   display: flex;
   justify-content: center;
   position: absolute;
   width:100%
}

以下是 HTML

<div class = "parent">
   <div class = "child">text</div>
</div>

更新於:2020 年 1 月 28 日

205 次瀏覽

開啟你的 職業生涯

完成課程以獲得認證

開始學習
廣告