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

css樣式div垂直居中

榮姿康1年前7瀏覽0評論

CSS樣式Div垂直居中是Web開發中常見而又常見的問題。特別是在響應式設計中,垂直居中的需求更加迫切。下面我們將介紹一些實用的CSS方法來垂直居中div。

<div class="container">
<div class="content">
<p>這是要垂直居中的 div 內容</p>
</div>
</div>

CSS 方法:

1. 使用行高

.container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.content {
line-height: 1.5;
}

2. 使用 absolute 和 transform

.container {
position: relative;
height: 100vh;
}
.content {
position: absolute;
top: 50%;
transform: translateY(-50%);
}

3. 使用 flexbox

.container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.content {
align-self: center;
}

4. 使用 grid

.container {
display: grid;
height: 100vh;
}
.content {
align-self: center;
justify-self: center;
}

最后一句話,以上 CSS 方法可以讓你的 div 水平垂直居中。