我正在嘗試創建一個文本框,以便用戶可以將書中的一章輸入到該文本框中。在文本框中的起始位置(html/css)
它開始從箱子中間鍵入。我該如何解決它?
.TextBox {
width: 500px;
height: 50px;
background: #cccccc;
margin-left: auto;
margin-right: auto;
}
.TextBox > h1 {
font-family: 'Consolas';
text-align: center;
padding-top: 10px;
}
#textbox {
width: 500px;
height: 200px;
}
<div class="container">
<div class="TextBox">
<h1> Enter text here </h1>
<form>
<input type="text" id="textbox">
</form>
</div>
</div>
使用'textarea',而不是'input'箱? – kukkuz