純前端實現-tab卡片化樣式切換 html內容 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>選項卡切換</title> <link rel="stylesheet" type="text/css" href="./css ...
最全的CSS盒子(div)水平垂直居中佈局,對CSS 佈局掌握程度決定你在 Web 開發中的開發頁面速度。
相對於屏幕
方法一:利用定位
<div class="box"></div>
<style>
body {
background: green;
}
.box {
position: fixed;
top: 50%;
left: 50%;
margin: -150px 0 0 -150px;
width: 300px;
height: 300px;
background: orange;
}
</style>
設置 Position 為 fixed 定位,top 和 left 各設置 50%,margin 設置負的容器寬高的一半。
方法二:利用 transform
<div class="box"></div>
<style>
body {
background: green;
}
.box {
position: fixed;
top: 50%;
left: 50%;
width: 300px;
height: 300px;
transform: translate(-50%, -50%);
background: orange;
}
</style>
設置 Position 為 fixed 定位,top 和 left 各設置 50%,transform 的 translate 設置上、左 -50%。
方法三:利用 margin auto
<div class="box"></div>
<style>
body {
background: green;
}
.box {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 300px;
height: 300px;
background: orange;
}
</style>
設置 Position 為 fixed 定位,上、右、下、左設置為 0,margin 設置為 auto。
相對於父容器
方法一:利用定位
<div class="parent">
<div class="child"></div>
</div>
<style>
.parent {
position: relative;
margin: 100px auto 0;
width: 500px;
height: 500px;
background: green;
}
.child {
position: absolute;
top: 50%;
left: 50%;
margin: -100px 0 0 -100px;
width: 200px;
height: 200px;
background: orange;
}
</style>
父容器設置為相對定位,子容器設置為絕對定位,top 和 left 各設置 50%,margin 設置負的子容器寬高的一半。
方法二:利用 transform
<div class="parent">
<div class="child"></div>
</div>
<style>
.parent {
position: relative;
margin: 100px auto 0;
width: 500px;
height: 500px;
background: green;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 200px;
background: orange;
}
</style>
父容器設置為相對定位,子容器設置為絕對定位,top 和 left 各設置 50%,transform 的 translate 設置上、左 -50%。
方法三:利用 margin auto
<div class="parent">
<div class="child"></div>
</div>
<style>
.parent {
position: relative;
margin: 100px auto 0;
width: 500px;
height: 500px;
background: green;
}
.child {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 200px;
height: 200px;
background: orange;
}
</style>
父容器設置為相對定位,子容器設置為絕對定位,上、右、下、左設置為 0,margin 設置為 auto。
方法四:利用 flex
<div class="parent">
<div class="child"></div>
</div>
<style>
.parent {
position: relative;
margin: 100px auto 0;
width: 500px;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
background: green;
}
.child {
width: 200px;
height: 200px;
background: orange;
}
</style>
父容器 display 設置為 flex,水平垂直設置為居中。
方法五:計算父盒子與子盒子的空間距離
<div class="parent">
<div class="child"></div>
</div>
<style>
.parent {
margin: 100px auto 0;
width: 500px;
height: 500px;
overflow: hidden;
background: green;
}
.child {
margin: 150px auto;
width: 200px;
height: 200px;
background: orange;
}
</style>
計算父盒子與子盒子的空間距離。
微信交流群
前端面試:劍指 Offer (3群)