--- title: Alternative style sheets slug: Web/CSS/Alternative_style_sheets translation_of: Web/CSS/Alternative_style_sheets ---
{{cssref}}

Specifying alternative style sheets in a web page provides a way for users to see multiple versions of a page, based on their needs or preferences.

在网页中指定可替代样式表允许用户为网页选择他们喜欢的样式。

Firefox lets the user select the stylesheet using the View > Page Style submenu. Internet Explorer also supports this feature (beginning with IE 8), also accessed from View > Page Style. Chrome requires an extension to use the feature (as of version 48). The web page can also provide its own user interface to let the user switch styles.

Firefox允许用户通过菜单栏中 查看 > 页面样式 选择样式表。Internet Explorer也支持这一功能(从IE8开始)(菜单栏 查看 > 页面样式)。网页也可提供自己的用户界面让用户

在Firefox和Internet Explorer(从IE8(6?)开始)中,用户可以通过菜单栏中的 查看 > 页面样式 来选择网页的样式。网页也可以提供选择样式的界面。

An example: specifying the alternative stylesheets

示例:提供可替代样式表

The alternate stylesheets are commonly specified using a {{HTMLElement("link")}} element with rel="alternate stylesheet" and title="..." attributes. For example:

一般使用<{{HTMLElement("link")}}>指定可替换样式表。在这个标签中指定rel="alternate stylesheet" 属性和 title="..."属性

<link href="reset.css" rel="stylesheet" type="text/css">

<link href="default.css" rel="stylesheet" type="text/css" title="Default Style">
<link href="fancy.css" rel="alternate stylesheet" type="text/css" title="Fancy">
<link href="basic.css" rel="alternate stylesheet" type="text/css" title="Basic">

In this example, the styles "Default Style", "Fancy", and "Basic" will be listed in the Page Style submenu, with "Default Style" pre-selected. When the user selects a different style, the page will immediately be re-rendered using that style sheet.

在此例中,“页面样式”菜单中会出现“Default Style”、“Fancy”和“Basic”的选项。“Default Style”默认选中。如果用户选择一个不同的样式,浏览器就使用用户选择的样式。

No matter what style is selected, the rules from the reset.css stylesheet will always be applied.

无论用户选择何种样式, reset.css 总会被应用。

尝试

Click here for a working example you can try out.

点击此处进入示例。

细节

网页中的样式表分为三类:

Any stylesheet in a document falls into one of the following categories:

When style sheets are referenced with a title attribute on the {{HTMLElement("link", "<link rel=\"stylesheet\">")}} or {{HTMLElement("style")}} element, the title becomes one of the choices offered to the user. Style sheets linked with the same title are part of the same choice. Style sheets linked without a title attribute are always applied.

Use rel="stylesheet" to link to the default style, and rel="alternate stylesheet" to link to alternative style sheets. This tells the browser which style sheet title should be selected by default, and makes that default selection apply in browsers that do not support alternate style sheets.

Specifications

Specification Status Comment
{{SpecName('HTML WHATWG', '#rel-alternate', 'link type "alternate"')}} {{Spec2('HTML WHATWG')}}
{{SpecName('HTML WHATWG', '#link-type-stylesheet', 'link type "stylesheet"')}} {{Spec2('HTML WHATWG')}}
{{SpecName('HTML WHATWG', '#attr-style-title', 'the "title" attribute for the style element')}} {{Spec2('HTML WHATWG')}}
{{SpecName('HTML WHATWG', '#attr-meta-http-equiv-default-style', 'meta http-equiv="default-style")')}} {{Spec2('HTML WHATWG')}}
{{SpecName('CSSOM', '#css-style-sheet-collections', 'CSS Style Sheet Collections')}} {{Spec2('CSSOM')}} The CSS OM specification defines the concepts of the style sheet set name, its disabled flag, and the preferred CSS style sheet set name.
It defines how these are determined, and lets the HTML specification define the HTML-specific behaviors by requiring it to define when to create a CSS style sheet.
{{SpecName("HTML4.01", "present/styles.html#h-14.3", "Alternative style sheets")}} {{Spec2("HTML4.01")}} Earlier, the HTML specification itself defined the concept of preferred and alternate stylesheets.

{{Compat("html.elements.link.rel.alternate_stylesheet")}}