Home > Article > Web Front-end > How to center a div? How to center an absolutely positioned div?
Centered div
(Recommended tutorial: css quick start)
Code implementation:
border: 1px solid red;margin: 0 auto; height: 50px;width: 80px;
Absolutely positioned div is centered
Code implementation:
border: 1px solid black; position: absolute; width: 200px; height: 100px; margin: 0 auto; left: 0; right: 0;
The above is the detailed content of How to center a div? How to center an absolutely positioned div?. For more information, please follow other related articles on the PHP Chinese website!