0
我有一個需要垂直居中的標誌。我可以使用flexbox方法將其居中放在父級上使用display flex,而在子級上使用margin auto。垂直中心A會計固定欄頂部
但是,我有一個固定的頂部酒吧高度150px與父容器重疊。所以標誌現在與垂直居中相距150px。
解決這個問題的最好方法是在圖像上添加padding-top?
h1, p{
margin: 0;
padding: 0;
}
.header {
width: 100%;
min-height: 100vh;
display: flex;
margin: auto;
background: green;
}
.top-bar {
position: fixed;
left: 0;
right: 0;
height: 150px;
width: 100%;
background: tomato;
display: flex;
justify-content: center;
align-items: center;
}
.logo {
margin: auto;
}
.section{
height: 1500px;
background: pink;
}
<div class="header">
<div class="top-bar">
<h1>Top Bar</h1>
</div>
<img class="logo" src="http://via.placeholder.com/350x150">
</div>
<div class="section">
<p>Section</p>
</div>
代碼:https://codepen.io/drunktuts/full/oemRxp/
這奏效了! –
@ChrisBrennan謝謝...並且我也可以請你接受我的回答 – LGSon
我接受了。當你看到它時讓我知道。 –