Page 1 of 1

Input type submit button not centered?

Posted: Tue Nov 29, 2022 1:00 pm
by Catherine
Hi guys,

I've another problem. I tried to center the log in button but I couldn't get anything done. What have I done wrong?

CSS

.centerEverything {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
line-height: 2.5em;
}

input[type=submit] {
padding: 0.5em 1em;
cursor: pointer;
border: none;
border-radius: 0.2em;
}

Re: Input type submit button not centered?

Posted: Tue Nov 29, 2022 1:07 pm
by Catherine
Alright,

I fixed it. I have an element floated left before it. So this caused the trouble.

Re: Input type submit button not centered?

Posted: Tue Nov 29, 2022 1:08 pm
by siteadmin
or you can just add text-align: center in your main div.

Re: Input type submit button not centered?

Posted: Tue Nov 29, 2022 1:09 pm
by Bella
yeah, that's great idea.