How would I do this?
Just like <hr/>
but with a text-box.
How would I do this?
Just like <hr/>
but with a text-box.
I think what you need to do is set the Width to 100%
e.g
<html>
<head></head>
<body>
<input id="inputBox" style="width:100%;"></input>
</body>
</html>