#editpro{
background:#CEEBFB;
margin-left:30px;
margin-right:500px;
text-align:center;
color:#3687cc;
font-size:20px;
border:2px ridge #3687cc;
border-radius:15px;
width:350px;
}
HTML
<div id="editpro">
<form>
<label for="username">Username </label>
<input type="text" id="username" name="username"/><br /><br />
<label for="password1">Password </label>
<input type="password" id="password1" name="password1" /><br /><br />
<textarea id="myTextarea" style="width:320px"></textarea>
<input type="submit" value="submit"/>
</form>
</div>
這是我的網頁,在高度上每當我試圖擴大textarea的,我不要面對任何問題,但是當我嘗試在寬度方向上拉伸時,它會溢出div editpro
。
如何控制這種可擴展性,因爲寬度規範看起來並不能控制其溢出。
這是你的問題的答案http://stackoverflow.com/questions/5271782/how-to-disable-the-resize-grabber-of-an-html-textarea – fliptheweb
非常感謝很多朋友..我怎麼接受這個答案? :) –