问题基本上是每当我在移动电话上显示此表单时,当我在表单中输入文本时,textarea会扩展太多并且会超过“提交”按钮和页脚。当我在textarea外部单击时,它会保持展开状态,但提交按钮和页脚将返回到textarea下面的位置。我究竟做错了什么?我在这里提供了html和css。什么是可能导致类似的事情发生,我该如何解决?
我想要它做的就是保持合理的尺寸。在桌面上加载时似乎没有任何问题。它似乎只发生在手机上。
这是HTML
<!DOCTYPE html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" /> </head>
<body>
<form action="success.php" method="POST" onSubmit="return validateTextbox();" enctype="multipart/form-data">
<input type="hidden" name="action" value="submit"> Full Name:
<input id="fullname" name="name" type="text" value="" size="40" placeholder="First and Last Name" />
<br>
<br> Your Email:
<input id="youremail" name="email" type="email" value="" size="40" placeholder="Enter your Email" />
<br>
<br>
<!--How do you want your transcript?<br><br>
<input type="radio" name="transcript_type" value="verbatim"/>Verbatim
<input type="radio" name="transcript_type" value="non_verbatim"/>Non- Verbatim
<input type="radio" name="transcript_type" value="unknown"/>Don't Know Yet<br><br>-->Your Message:
<br>
<br>
<textarea id="messageArea" name="message" rows="40" cols="80" placeholder="Enter your message here (10 character minimum.)"></textarea>
<br>
<input type="submit" value="Submit" onclick="return val();" /> </form>
</body>
</html>
这是CSS
body {
background-color: black;
}
form {
/*border-style: solid;
border-right-style: none;
border-left-style: none;*/
padding-top: 100px;
text-align: center;
width: 100%;
background-size: cover;
background-image: url(images/starbright_avw.png);
margin-top: 20px;
color: white;
}
label {
font-family: impact;
}
/*
text-align: center;
margin-top: 40px;*/
input[type="submit"] {
height: 50px;
border-radius: 5px;
border-style: solid;
border-color: black;
color: black;
margin-bottom: 50px;
margin-top: 10px;
}
.row {
margin-top: 20px;
}
p.message {} p.yourMessage {
font-family: impact;
color: blue;
}
答案 0 :(得分:0)
我认为这可能是由移动网站视口缩放引起的。在textarea中键入任何字符后,移动视口缩放会将行高增大10px,这会增加textarea的高度cols * 10px。在你的代码中,它增长了400px。我有两个解决方案。
为textarea设置固定高度。至于您的情况,您可以将textarea的高度设置为cols
* line-height
。假设文本的行高为18px和cols="40"
,您可以设置height:18*40=720px;
。
您可以添加:
<head><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /></head>
并将textarea的宽度设置为100%。