如何确保用户看到新标志?
我们重新设计了网站的徽标,我希望确保用户在访问我们的页面时看到新图像。该徽标是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将 CSS 的 URL 修改为
style.css?newVersion=1
。Modify the URL of the CSS to i.e.
style.css?newVersion=1
.添加未使用的查询字符串参数(例如,
?version=2011-06-01
)以创建新的未缓存 URL。Add an unused querystring parameter (eg,
?version=2011-06-01
) to create a new, uncached URL.一种可靠的(ime)方法是将徽标背景图像嵌入到 CSS 中:
One sure (ime) way is to embed the logo background image right in the css: