我想把我的标题居中,所以我用了white-space: nowrap;,这样它就不会堆叠了,它出现在一行中,但是现在它不会居中。所以有了标题的CSS代码,它的外观很好,唯一的问题是,它不是居中出现,而是从中心开始,而且一直向右。所以,它不是“Meet The Seekers“,而是“Meet the Seekers“。我的代码片段是:第一个
white-space: nowrap;
ymdaylpp1#
我不知道为什么你的代码中有justify-content: center,因为它在那里什么都不做。你也不需要inline-block,因为span标签不是块元素。您可以删除display属性并添加text-align: center,这样它将位于h1标记的中心。第一个
justify-content: center
inline-block
span
display
text-align: center
h1
ct3nt3jp2#
只需使用文本对齐:居中第一个
2条答案
按热度按时间ymdaylpp1#
我不知道为什么你的代码中有
justify-content: center
,因为它在那里什么都不做。你也不需要inline-block
,因为span
标签不是块元素。您可以删除
display
属性并添加text-align: center
,这样它将位于h1
标记的中心。第一个
ct3nt3jp2#
只需使用文本对齐:居中
第一个