HTML span align center not working?

前端 未结 7 1556
别跟我提以往
别跟我提以往 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 22:58

    The align attribute is deprecated. Use CSS text-align instead. Also, the span will not center the text unless you use display:block or display:inline-block and set a value for the width, but then it will behave the same as a div (block element).

    Can you post an example of your layout? Use www.jsfiddle.net

提交回复
热议问题