Is there a way you can make the span tag move into the center using CSS?
I need to ask this question because whenever I put text-align in the span, it doesn't work.
span {
text-align: center;
}
<span>
This is span.
</span>
Just add display block:
span {
text-align:center;
display:block;
}