aligning form elements to center in css

Solutions on MaxInterview for aligning form elements to center in css by the best coders in the world

showing results for - "aligning form elements to center in css"
Baylor
07 Jan 2018
1body {
2    text-align: center;
3}
4form {
5    display: inline-block;
6}