1

我已经编写 Web 代码几年了,我很困惑。我正在编写基本的 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>

4

2 回答 2

1

它正在接受输入。将光标放在文本区域并按住任意键几秒钟。它最终会结束。问题是由于溢出被隐藏引起的。同样postForm浮动元素也无济于事。

于 2012-12-08T00:10:55.633 回答
0

您不要在 textareas 上使用 value 参数,而是这样做: <textarea>example text</textarea>

于 2012-12-08T00:06:19.290 回答