Templar
Templar

Reputation: 1871

Centering table and submit button CSS

Centering table on my screen works with such CSS lines:

margin-left: auto;
margin-right: auto;

However for submit button it doesn't work, do i need to enter it manually like margin-right:400px? But if other's people screen has bigger resolution then it won't be in center?

Upvotes: 0

Views: 894

Answers (2)

Pranay Rana
Pranay Rana

Reputation: 176946

Make use of text-align property for align it center

text-align:center;

Upvotes: 3

yoozer8
yoozer8

Reputation: 7489

Wrap the button with

<center> </center>

Upvotes: -2

Related Questions