为什么背景下面有空格?

问题描述 投票:0回答:0

enter image description here我想让我的背景全屏,但我不知道为什么footerWrap下面有一个空白。这是我的代码

body{
    background: url('./Images/login.jpg');
    height: 100vh;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.wrapper{
    min-height: 100vh;
    display: flex;
    justify-content: right;
    
}  

不知道怎么解决

html css background-image
© www.soinside.com 2019 - 2024. All rights reserved.