Pop n' Plop

Teknik pemusatan untuk menempatkan konten lain.

Lihat artikel lengkap untuk detail selengkapnya tentang teknik ini dan kapan teknik ini efisien.

Artikel lengkap · Video di YouTube · Sumber di GitHub

HTML

<article>
  <h1 class="pop-n-plop">Pop n' Plop</h1>
</article>

CSS


        article {
  position: relative;
}

.pop-n-plop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}