HTML span align center not working?

前端 未结 7 1366
别跟我提以往
别跟我提以往 2020-12-22 22:36

I have some HTML:

This is some text in a div element!

The Div is c

相关标签:
7条回答
  • 2020-12-22 23:05
    span.login-text {
        font-size: 22px;
        display:table;
        margin-left: auto;
        margin-right: auto;
    }
    
    <span class="login-text">Welcome To .....CMP</span>
    

    For me it worked very well. try this also

    0 讨论(0)
提交回复
热议问题