使用 css 将横幅添加到 WordPress 的一角

发布于 2024-12-06 19:19:11 字数 140 浏览 1 评论 0原文

如何使用 css 将横幅添加到 WordPress 帖子的一角或帖子本身内。我已经攻击了一个我想要的屏幕,但我不知道如何完成它。

在此处输入图像描述

How can I add a banner to the corner of a wordpress post using css or within the post itself. I've attacked a screen of what I'd like it to look like, but I don't know how to get it done.

enter image description here

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

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

发布评论

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

评论(2

野生奥特曼 2024-12-13 19:19:11

将背景图像添加到您的帖子类中,并将 background-position 属性设置为 top right

.post {background:url('your-image.jpg') top right no-repeat}

Add a background image to your post class and set the background-position property to top right

.post {background:url('your-image.jpg') top right no-repeat}
短叹 2024-12-13 19:19:11

确保父 div 设置了position:relative(或position:absolute),然后将横幅设置为position:absolute;右:0;顶部:0;

Ensure the parent div has position: relative (or position: absolute) set, then set your banner to position: absolute; right: 0; top: 0;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文