我一直试图让这个网页变得敏感。当我达到约970px时,文本停止调整。我将左右边距设置为5%,并在较小的查询中缩小字体大小,但是使用此文本时,文本不会分成新行,而是创建滚动条。我无法弄清楚为什么只有较小的查询而不是其他查询才会发生这种情况。实际网站为http://test.cloudhudl.com/contact-us/
这是更大的查询的样子: http://imgur.com/LJto9Ss
这是较小的查询的样子: http://imgur.com/p1fLc7J
@media only screen
and (max-width : 1023px)
and (min-width : 768px) {
#main {
position: relative;
font-size: 18px;
margin-left: 2.5vw;
margin-right: 2.5vw;
width: 100%;
font-family: "Comic Sans MS", cursive, sans-serif;
}
/* change overal size */
.social__container {
font-size: .9em;
position: absolute;
padding-top: 1em;
}
.email {
border: solid 5px #FA7862;
padding: 4% 0% 4% 0%;
text-align: center;
}
.phone {
margin-top: 8%;
border: solid 5px #FA7862;
padding: 4% 0% 4% 0%;
text-align: center;
}
/* Info Section */
.wrapper {
position: relative;
display: block;
width: 100%;
margin: 0 auto;
}
#info {
position: absolute;
margin-top: 45%;
width: 50%;
font-family: "Trebuchet MS", Helvetica, sans-serif;
font-size: 22px;
clear: both;
float: left;
}
/*Form styles*/
.basic-grey {
margin-top: 5%;
margin-left: auto;
margin-right: auto;
position: relative;
display: block;
background: #F7F7F7;
padding: 25px 15px 25px 10px;
font: 12px Georgia, "Times New Roman", Times, serif;
color: #888;
width: 70vw;
text-shadow: 1px 1px 1px #FFF;
border: 1px solid #E4E4E4;
float: both;
}
.basic-grey label {
display: block;
margin: 0px;
font-size: 14px;
}
.basic-grey label>span {
float: left;
width: 20%;
text-align: right;
padding-right: 10px;
margin-top: 10px;
color: #888;
}
.basic-grey input[type="text"], .basic-grey input[type="email"], .basic-grey textarea {
border: 1px solid #DADADA;
color: #888;
height: 30px;
margin-bottom: 16px;
margin-right: 6px;
margin-top: 2px;
outline: 0 none;
padding: 3px 3px 3px 5px;
width: 70%;
font-size: 12px;
line-height:15px;
box-shadow: inset 0px 1px 4px #ECECEC;
-moz-box-shadow: inset 0px 1px 4px #ECECEC;
-webkit-box-shadow: inset 0px 1px 4px #ECECEC;
}
#message {
padding: 5px 3px 3px 5px;
height: 200px;
}
.basic-grey .button {
position: relative;
width: 70%;
background: #FA7862;
border: none;
padding: 10px 25px 10px 25px;
color: #FFF;
box-shadow: 1px 1px 5px #B6B6B6;
border-radius: 3px;
text-shadow: 1px 1px 1px #9E3F3F;
cursor: pointer;
font-size: 16px;
}
.basic-grey .button:hover {
background: #CF7A7A;
}
/* Footer */
footer {
position: static;
width: 100%;
height: auto;
text-align: center;
padding-top: 35%;
}
答案 0 :(得分:1)
第一个问题在这里:
@media only screen and (max-width: 1023px) and (min-width: 768px)
#main {
position: relative;
font-size: 18px;
margin-left: 2.5vw;
margin-right: 2.5vw;
width: 100%;
font-family: "Comic Sans MS", cursive, sans-serif;
}
如果删除边距值,滚动条将消失。
接下来的问题是奇怪的定位。如果更改标记,可以执行一些技巧。如果您在HTML中切换信息div和表单的位置,然后在两者上切换float:right;
而不是float:left;
,他们就会改变位置。然后,当您点击媒体查询时,您可以摆脱浮动,表单将位于联系信息之上。