Aligning Form Elements in CSS | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Aligning Form Elements in CSS

I am having trouble aligning my form elements to the center of the page; each div has a class of form-group each with different input tags and all elements are wrapped in a div container. I set the margin to auto and display block but nothing happens to try to align them. Here is my code for the form: https://code.sololearn.com/WtAgA4GexUOY/?ref=app

6th Aug 2021, 5:06 PM
Jovani
Jovani - avatar
3 Answers
+ 2
I Suggest using flexbox add these properties to your form-group class display: flex; justify-content: center; align-items: center; flex-direction : column; I hope that solves your problem More options with flexbox link below https://css-tricks.com/snippets/css/a-guide-to-flexbox/
6th Aug 2021, 5:25 PM
Mehrdad Sh
Mehrdad Sh - avatar
+ 1
You can try as Mehrdad Sh said or check out this https://code.sololearn.com/W7tY8MEFFA4v/?ref=app
6th Aug 2021, 5:44 PM
Krishna Dhulipalla
0
Thanks, both of you
6th Aug 2021, 6:02 PM
Jovani
Jovani - avatar