我希望內容垂直和水平居中,但它只居中水平居中。問題是我沒有固定的高度。 謝謝你們的幫助!居中水平和垂直的DIV沒有固定高度
html,
body {
height: 100% margin: 0;
overflow: hidden;
}
.content {
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
display: flex;
flex-direction: column;
text-align: center;
}
<div class="content">
<h1>Welcome to the website!</h1>
</div>
你的html在哪裏 –
你肯定答案不能在這個線程中找到http://stackoverflow.com/questions/396145/how-to-vertically-center-a-div-for-所有瀏覽器? – Turnip
謝謝,找到解決方案! – Daniel