Positionally Center, when use position like fixed, center the container



This content originally appeared on DEV Community and was authored by Faisal Ahmed

.product-scroll-area {
  display: block;
  position: fixed;
  bottom: 20px;
  width: 70%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
  z-index: 300;

  /* Changes to center horizontally */
  left: 50%;
  transform: translateX(-50%);
}


This content originally appeared on DEV Community and was authored by Faisal Ahmed