/* Vertically Centering Text */ .parent { position: relative; } .child { position: absolute; top: 50%; transform: translateY(-50%); } /* Horizontally Center */ .text { text-align: center; }
/* Vertically Centering Text */ .parent { position: relative; } .child { position: absolute; top: 50%; transform: translateY(-50%); } /* Horizontally Center */ .text { text-align: center; }