3
How can I put 2 input aligned side by side? 

<li>
<input type="text" /><input type="checkbox" />
</li>
3
How can I put 2 input aligned side by side? 

<li>
<input type="text" /><input type="checkbox" />
</li>
4
It’s very simple, the CSS has it:
.campo1 {
   float:left;
}<input type="text" class="campo1" />
<input type="checkbox" />Browser other questions tagged html css input
You are not signed in. Login or sign up in order to post.
The logic is the same of that question.
– Renan Gomes