Yes it’s possible, simply float left the two first inputs, your code stays like this:
HTML:
<div style="width:300px">
<input type="text" id="t1" width="140px">
<input type="text" id="t2" width="140px">
<input type="text" id="t3" width="140px">
</div>
CSS:
#t1{
float:left;
}
#t2{
float:left;
}
4
solved HTML Overflow to a new line [closed]