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 水平垂直居中。
上一篇ajax接受的是一個頁面
下一篇ajax接收json使用