如何使用 CSS 设置 PHP 后缀的样式?

发布于 2024-10-15 19:34:18 字数 182 浏览 1 评论 0原文

我在 PHP 中设置了一个日期对象: $date_formatting = "l, M jS";

请注意日期 (j) 右侧的大写 S。这将创建一个后缀,例如 3rd、1st、2nd。

问题是我不知道如何仅针对 CSS 样式的后缀。我想让后缀的字体大小小于数字。

有什么线索吗?

I've setup a date object in PHP: $date_formatting = "l, M jS";

Note the uppercase S to the right of the day (j). This creates a suffix such as 3rd, 1st, 2nd.

The problem is I don't know how to go about targeting only the suffix for CSS styling. I would like to make the suffix a smaller font size than the number.

Any clues?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不念旧人 2024-10-22 19:34:18

$date_formatting="l, M j<\s\u\p>S<\/\s\u\p>";

其作用是将 < S 周围的 /code> 标记。此标签适用于上标

$date_formatting="l, M j<\s\u\p>S<\/\s\u\p>";

What this does is puts the <sup> tag around the S. This tag is for superscript.

一刻暧昧 2024-10-22 19:34:18

或者,如果您想避免逃避所有这些的痛苦...

echo date("l, M j")."".date("s") ."";

Or, if you want to avoid the pain of escaping all of that...

echo date("l, M j")."<span class='whatever'>".date("s")."</span>";

梦毁影碎の 2024-10-22 19:34:18
$date_formatting = "l, M, j<\s\m\a\l\l>S</\s\m\a\l\l>";
$date_formatting = "l, M, j<\s\m\a\l\l>S</\s\m\a\l\l>";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文