IT Placement Papers Web Technologies CSS
This category contains CSS Interview Questions and Answers |
How do I center block-elements with CSS1?
|
|
|
|
|
There are two ways of centering block level elements:
1. By setting the properties margin-left and margin-right to auto and width to some explicit value:
BODY {width: 30em; background: cyan;}
P {width: 22em; margin-left: auto; margin-right: auto}
In this case, the left and right margins will each be four ems wide, since they equally split up the eight ems left over from (30em - 22em). Note that it was not necessary to set an explicit width for the BODY element; it was done here to keep the math clean.
Only registered users can write comments. Please login or register.
|