I am wondering, 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.
Html
<span>
This is span.
</span>`
Css
span {
text-align:center;
}