0
我已經使用flexbox將我的內容垂直居中放置在'main'標記內,但是當添加太多內容時,它會溢出到'標題'中。有沒有一種方法可以計算出,如果div高於屏幕上某個垂直位置(256px - 高度設置爲標題),它會從'main'(當前設置爲.vertical)中刪除一個類。當兩個div重疊時刪除課程
我知道.removeClass()刪除類,但我不知道從哪裏開始垂直位置計算。
HTML
<header>Nav</header>
<main class="vertical">A lot of text here</main>
CSS
body, html{margin:0; height:100%}
header{width:100%; height:256px; background:red;}
main{width:100%; height: calc(100% - 256px); background:#fff;}
.vertical{
display: flex;
flex-direction: column;
justify-content: center;
}
我希望是有道理的。 非常感謝謝謝。