+ 1
0
To me the text appears centered...
text-align centers horizontally on the line. Are you trying to center vertically in the container?
0
One way could be using flex-box on #txt:
display: flex;
align-items: center;
justify-content: center;
0
Then try:
position: center;
0
try it!
align="center"
or
style="text-align:center"