控制 Dreamweaver CS4 中各个 spry 选项卡式面板的样式

发布于 2024-09-07 06:45:17 字数 177 浏览 4 评论 0原文

您好,我正在使用 Dreamweaver CS4 的 spry 选项卡式面板。我只想修改一个选项卡面板的样式,以便所有选项卡的背景看起来都不同。我尝试过查看“SpryTabbedPanels.css”属性,但没有运气,只有一个修改所有属性的“.TabbedPanelsTab”属性,

任何熟悉此内容的人请给我一些建议,谢谢。

Hi I'm using Dreamweaver CS4's spry tabbed panels. I want to modify just one tab panel's style so that all the tab's backgrounds will look different. I've tried looking through the "SpryTabbedPanels.css" properties but no luck, just one that modifies ALL of them called ".TabbedPannelsTab"

Anyone familiar with this stuff give me some advice please, thanks.

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

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

发布评论

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

评论(1

说谎友 2024-09-14 06:45:17

这个问题实际上是关于 CSS 的。在这种特殊情况下,您可以将 ID 添加到要修改的选项卡,然后将 CSS 应用于该 id 选择器:

#myCustomTab{
    /* custom styles */
}

只需确保覆盖您不想从 main 继承的任何样式。

This question is really about CSS. IN this particular case, you can add an ID to the tab you want to modify and then apply CSS to that id selector:

#myCustomTab{
    /* custom styles */
}

Just make sure that you override any style you don't want to be inherited from the main.

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