1

我正在我的网站上编写一个评论页面,一切正常,但是当你让它成为我页面的更大部分(通知)时,它会在页面上移动。我已经使用相对位置将文本区域编码到我想要的位置。这是我使用的css代码:......

#mainSection{
text-align:left;
margin-top:3px;
margin-bottom:50px;
margin-left:270px;
position:relative;
bottom:650px;
}
#mainSection .newPost{
width:500px;
height:125px;
}
4

1 回答 1

0

您可以阻止用户完全调整文本框的大小:

textarea {
    resize: none;
}
于 2013-06-10T15:49:09.260 回答