-1
I need to put a text, an input-text, another text and another input text on the same line (Row) in html. I can’t find a way.
Can someone help me?
-1
I need to put a text, an input-text, another text and another input text on the same line (Row) in html. I can’t find a way.
Can someone help me?
2
You can put a label in front of your input, getting like this:
<label>Nome: </label><input type="text" name="nome">
<label>Email: </label><input type="text" name="email">
If you want to put one input under another, you put a br to break the line.
2
with a simple CSS
#inline {
display: inline;
}
<div id="inline">
um texto <input type="text" placeholder="um input"/>
outro texto <input type="text" placeholder="outro input"/>
</div>
Browser other questions tagged html
You are not signed in. Login or sign up in order to post.
Do not understand your doubt? you want to put
label
andinput
on each other’s side?– Rafael Augusto
I’d have an example of how you’re doing?
– David
<table><tr><td>texto <input type="text"><input type="text"></td></tr></table>
– Oralista de Sistemas