Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

centrer un élément absolute

.truc-a-centrer {
  position: absolute; /* postulat de départ */
  top: 50%; left: 50%; /* à 50%/50% du parent référent */
  transform: translate(-50%, -50%); /* décalage de 50% de sa propre taille */
}
Source by www.alsacreations.com #
 
PREVIOUS NEXT
Tagged: #centrer #absolute
ADD COMMENT
Topic
Name
3+1 =