Question d’entretien chez EPAM Systems

How to center a div with CSS2 and CSS3?

Réponse à la question d'entretien

Utilisateur anonyme

15 févr. 2016

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

1