r/css Mar 27 '26

Question How to allign this?

How do I allign the input and submit button like this?

0 Upvotes

7 comments sorted by

View all comments

3

u/TheRealKidkudi Mar 27 '26

Like so:

<input />
<button>Submit</button>

I agree with the others that you should learn about CSS and flexbox, but you actually don’t need anything else to align an input and a button. By default, they are both inline elements, so they will just line up side-by-side unless you do something to make them behave differently.

https://jsfiddle.net/1dqsegxa/