我已经编写 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>