Centering with CSS transform like this
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
VS Centering with Flexbox like this
  display: flex;
  align-items: center;
  justify-content: center;
Which one is better supported and which one is better and advisable?
 
     
     
    