我如何将日期放在CSS中的文章上? [关闭]

问题描述 投票:-2回答:2
我在Squarespace网站上将文章的日期居中时遇到麻烦。我已将标题居中,并尝试为日期使用相同的代码,但它不起作用。如果有人能告诉我我要去哪里错,那将是很好的。提前致谢。这是CSS。 this is the website im working with and an example article

.entry-title { text-align: center; } .entry-meta { text-align: center; }

css squarespace
2个回答
0
投票
您的日期在不是块的SPAN标记中关闭。或者,您可以使用div代替span标签。那么您无需将其阻止。在您的约会班上。

要了解标签和您需要访问https://www.w3schools.com/tags/ref_byfunc.asp的行为,请访问>

.date{ display:block; text-align:center; }

您也可以使用flex。

.date { display: flex; justify-content: center; }


0
投票
您可以通过flex轻松地完成它:
© www.soinside.com 2019 - 2024. All rights reserved.