如何使用 CSS 设置 PHP 后缀的样式?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
$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 theS
. This tag is for superscript.或者,如果您想避免逃避所有这些的痛苦...
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>";