How to center this number inside a circle? - CSS

You can see the implementation here

I would like the numbers in the upper left corner of each window to be centered in the middle of the circles.

Help!

+7
source share
1 answer

Set line-height to the height of the window and use text-align: center;

So you get, for example:

 div { width: 100px; height: 100px; line-height: 100px; text-align: center; } 
+20
source

All Articles