标签: text input types screen
我该怎么做?
就像<hr/>但有文字框一样。
<hr/>
答案 0 :(得分:1)
我认为您需要做的是将宽度设置为100%
e.g
<html> <head></head> <body> <input id="inputBox" style="width:100%;"></input> </body> </html>