Can overflow text be centered?

后端 未结 8 934
傲寒
傲寒 2020-12-23 14:14

When I specify text-align:center for an element with a width that is greater than the width of the text, the text is centered within the content box of the elem

8条回答
  •  温柔的废话
    2020-12-23 15:06

    Try

    word-wrap:break-word;
    

    instead of:

    white-space:nowrap;
    

    or do you only want it on one line?

提交回复
热议问题