center with "transform"

้‡้ปž

.centered-element {

  margin: 0;
  
  /* โญ๏ธ  child ่ทŸ้šจ parent ็š„ๅๆจ™็ณป   */
  position: absolute;
  
  /* โญ๏ธ  ๅž‚็›ดๆฐดๅนณ็ฝฎไธญ   */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

็จ‹ๅผ็ขผ

Last updated