多个备用样式表

发布于 2024-10-18 13:05:33 字数 432 浏览 2 评论 0原文

假设一个站点是非常可配置的,并且它有一些正交设置,这些设置都可以使用备用样式表轻松控制。例如,其主菜单可以位于顶部或左侧,其背景颜色可以是红色或蓝色。

有没有办法定义多组备用样式表,以便我们可以替换每组的“主题”?

我正在寻找这样的东西:

<link rel="stylesheet" set="background" title="red" />
<link rel="alternate stylesheet" set="background" title="blue" />
<link rel="stylesheet" set="main-menu" title="left" />
<link rel="alternate stylesheet" set="main-menu" title="top" />

Suppose a site is very configurable, and it has a few orthogonal settings which are all easily controlled with alternate stylesheets. For example, its main menu can be at the top or on the left, and its background colour can be red or blue.

Is there a way to define multiple sets of alternate stylesheets so that we can replace the 'theme' for each set?

I'm looking for something like this:

<link rel="stylesheet" set="background" title="red" />
<link rel="alternate stylesheet" set="background" title="blue" />
<link rel="stylesheet" set="main-menu" title="left" />
<link rel="alternate stylesheet" set="main-menu" title="top" />

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

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

发布评论

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

评论(1

氛圍 2024-10-25 13:05:33

不,你不能那样做。三种方法是:

  • 在服务器上拥有一组工作表,并提供正确的工作表
  • 使用内联 CSS
  • 两者的组合。在外部 CSS 中加载所有不可更改的类,然后使用内联样式表设置可自定义的值。

No you can't do that. The three ways are:

  • Have a set of sheets on the server, and serve the correct one
  • Use inline CSS
  • Combination of both. Load all unchangable classes in an external CSS, then use an inline style sheet to set the customisable values.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文