将页面上的第二个 jquery Anys 滑块链接到不同的 CSS
我正在尝试在一页上使用两个任意滑块。
我需要以不同的方式设计它们。
我似乎无法弄清楚如何调用第二个样式表而不导致第二个样式表完全覆盖第一个样式表。我正在处理的网站的 URL 是:
I am trying to use two anything sliders on one page.
I need to style them differently.
I cannot seem to figure out how to call to a second style sheet without causing the second one to override the first one altogether. The URL for the site I am working on is:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
给一个滑块 uniqe id 并在 css 中引用它:
即在第一个滑块周围放置一个
。那么您可以使用
覆盖默认图像和类,它仅适用于第一个滑块。
您可以查看 http://www.w3schools.com/css/css_grouping_nesting.asp有关嵌套的更多信息
give one slider uniqe id and reference that in your css:
i.e. put a
<div id="top">...</div>
around the first slider. then you can useto override the default images and classes and it will only apply to the first slider.
You can check out http://www.w3schools.com/css/css_grouping_nesting.asp for more info on nesting