CSS 元素置中

閱讀時間約 3 分鐘

以下展示三種置中方法 :

raw-image


<div class="method-container">
<div class="method-title">Flexbox</div>
<div class="box">
<div class="dot"></div>
</div>
</div>

<div class="method-container">
<div class="method-title">Absolute </div>
<div class="box box-absolute">
<div class="dot"></div>
</div>
</div>

<div class="method-container">
<div class="method-title">Margin 0 Auto</div>
<div class="box" style="position: relative; margin: 0 auto;">
<div class="dot" style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);"></div>
</div>
</div>


body {
display: flex;
justify-content: space-around;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}

.method-container {
display: flex;
flex-direction: column;
align-items: center;
}

.method-title {
margin-bottom: 10px;
font-weight: bold;
}

.box {
display: flex;
justify-content: center;
align-items: center;
width: 200px;
height: 200px;
border: 1px solid red;
margin-bottom: 20px;
}

.box-absolute {
position: relative;
}

.box-absolute div {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.dot {
width: 20px;
height: 20px;
background-color: red;
border-radius: 50%;
}
    3會員
    17內容數
    留言0
    查看全部
    發表第一個留言支持創作者!
    你可能也想看
    Google News 追蹤
    Thumbnail
    接下來第二部分我們持續討論美國總統大選如何佈局, 以及選前一週到年底的操作策略建議 分析兩位候選人政策利多/ 利空的板塊和股票
    Thumbnail
    🤔為什麼團長的能力是死亡筆記本? 🤔為什麼像是死亡筆記本呢? 🤨作者巧思-讓妮翁死亡合理的幾個伏筆
    Thumbnail
    接下來第二部分我們持續討論美國總統大選如何佈局, 以及選前一週到年底的操作策略建議 分析兩位候選人政策利多/ 利空的板塊和股票
    Thumbnail
    🤔為什麼團長的能力是死亡筆記本? 🤔為什麼像是死亡筆記本呢? 🤨作者巧思-讓妮翁死亡合理的幾個伏筆