position:absoluteで中央寄せ

CSS

左右中央寄せ

.logo {
  positon: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;  // これがないと中央寄せにならない
}
BACK