I have an input in a form that I am trying to align in the center. Usually margin-left:auto and margin-right: auto fail to respond when display:
margin-left:auto
margin-right: auto
display:
You have can do something like this:
input { width: fit-content; margin: auto; }