Search code examples
htmlcsstext-align

Is there a way to make the span go to the center of document


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>


Solution

  • Just add display block:

    span {
        text-align:center;
        display:block;
    }