我创建了一个在桌面上看起来不错的着陆页,但在移动设备上却很糟糕。表单在背景图像之外,并创建了大量的空白区域。有没有办法让表格留在背景图像内?
谢谢!
以下是链接和代码段:crimsonroot.com/files/php/gettr.php
years
答案 0 :(得分:0)
将您的.container
课程修改为:
.container {
background-attachment: fixed; /* modified here */
background-image: url("gettrbackground.jpeg");
background-position: center center;
background-size: cover;
min-height: 100%; /* modified here */
padding-top: 100px;
width: 100%;
}