2011-09-28 89 views
0

我有一個<input>,這是一個電子郵件形式的主體。風格輸入類型=「文本」

<input name="bodyEmail" style="width: 460px; height: 500px; " type="text" /> 

我想有一個大的輸入,並從左上部分開始寫入。這段代碼我只是在中心開始,但寬度和高度是propper的。

在此先感謝

回答

4

這聽起來像你可能需要一個textarea代替。

<textarea name="bodyEmail" rows="6" cols="60"> 
    The user can type multiple lines in a textarea. 
    You can specify the number of rows and columns this textarea should have. 
</textarea>