如何确保用户看到新标志?

发布于 2024-11-10 18:04:05 字数 74 浏览 4 评论 0原文

我们重新设计了网站的徽标,我希望确保用户在访问我们的页面时看到新图像。该徽标是 div 的背景图像。如何确保用户访问页面时刷新CSS?

We redid the logo for our website, and I want to ensure that users see the new image when they come to our page. The logo is a background-image for a div. How do I ensure that the css is refreshed when the users come to the page?

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

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

发布评论

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

评论(3

谈情不如逗狗 2024-11-17 18:04:05

将 CSS 的 URL 修改为 style.css?newVersion=1

Modify the URL of the CSS to i.e. style.css?newVersion=1.

热血少△年 2024-11-17 18:04:05

添加未使用的查询字符串参数(例如,?version=2011-06-01)以创建新的未缓存 URL。

Add an unused querystring parameter (eg, ?version=2011-06-01) to create a new, uncached URL.

迷路的信 2024-11-17 18:04:05

一种可靠的(ime)方法是将徽标背景图像嵌入到 CSS 中:

.div-with-logo-image-inside {
  background-image:url("data:image/gif;base64,R0lGODlhhwASAPcAAAAAABD ... ");
}

One sure (ime) way is to embed the logo background image right in the css:

.div-with-logo-image-inside {
  background-image:url("data:image/gif;base64,R0lGODlhhwASAPcAAAAAABD ... ");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文