0

I make some adjustments in quite an old Wordpress website. We want to add text in circles which previously had single line.

What would be the best way to vertically align text in the middle?
I tried it with css for the divs as described in the answers to this question. But unfortunately it is not responsive.

I would really appreaciate the help!

1 Answers1

1

You can try to use flexbox it's easy and for you problem it's quick solution. Look at this link it may help you out a lot.

quick use, CSS:

display: flex;
align-items: center;
Šimon Slabý
  • 533
  • 1
  • 4
  • 18