我已经写了几年的网络代码而且我很难过。我正在编写基本的CSS / HTML,而我的textarea不会输入文本。我的标题在那里,双击后,我的光标应该表明它已准备好输入。
有什么想法吗?
我的css
.postForm {
float: right;
width: 580px;
height: 80px;
position:relative;
margin-top:-30px;
padding-top:30px;
left:-30px;
}
我的Html
<div class="postForm">
<form action="profile.php?id=<? echo $_GET['id']; ?>" method="POST">
<textarea style="resize:none;font-family:Comic Sans MS; font-size:12pt;overflow: hidden;" id="post" name="post" class="auto-clear" rows="1" cols="60" title="Publish your thoughts...">
</textarea>
<input style="position:relative;margin-left:450px;margin-top:-66px;" type="image" name="send" value="Post" src="post.png" />
</form>
答案 0 :(得分:1)
接受输入。将光标放在textarea中并按住任意键几秒钟。它最终会结束。问题是由隐藏溢出引起的。同样postForm
向右浮动元素也无济于事。
答案 1 :(得分:0)
您不在textareas上使用value参数,但请执行以下操作:
<textarea>example text</textarea>