Bootstrap表单在移动设备中无响应

时间:2015-06-20 04:43:25

标签: php jquery html css twitter-bootstrap

我创建了一个在桌面上看起来不错的着陆页,但在移动设备上却很糟糕。表单在背景图像之外,并创建了大量的空白区域。有没有办法让表格留在背景图像内?

谢谢!

以下是链接和代码段:crimsonroot.com/files/php/gettr.php

years

1 个答案:

答案 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%;
}