EPAM Systems interview question

How to center a div with CSS2 and CSS3?

Interview Answer

Anonymous

Feb 15, 2016

CSS2: width: 100px; position: absolute; top: 50%; left: 50%; margin: 0 -50px 0 -50px; CSS3: transform: translate(-50%, -50%);

1