-2

how can i set text (Absolute) position center horizontally and vertically in hero image. i have mentioned my css below

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;     
  color: white;
}
abcd
  • 7
  • 4

1 Answers1

0
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
hari srack
  • 24
  • 2