我有一个带有初始屏幕的Angular 6应用程序,我希望初始屏幕达到全高,但我不知道出了什么问题。这是今天的图像:
body,
html {
height: 100%;
}
.m-splash-screen {
background-color: #3c1977;
position: absolute;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
z-index: 99999;
}
</style>
这是我必须要做的CSS?
答案 0 :(得分:0)
使用固定位置,绝对值将最初占据100%的高度,但滚动时将不会覆盖整个屏幕。