所以我使用你的典型背景封面css代码
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
background-position: left top;
background-repeat: repeat;
background-attachment: scroll;
大部分时间都有效,除非我调整窗口大小以使其高度宽,然后就会发生这种情况(我的理解是,如果尺寸设置为覆盖,它只会使图像更高,而不是创建白色它下面的空间)
答案 0 :(得分:0)
尝试删除
tuple=()
number=int(input("Enter the how many elements you want :"))
for i in range(number):
ele=input("Enter the element :")
tuple = tuple + (int(ele),)
print(tuple)
并添加
background-attachment: scroll;
。
希望这有助于。