样式类型=“text/css” ……还有什么?

发布于 2024-11-08 14:32:47 字数 139 浏览 0 评论 0原文

除了“text/css”之外,浏览器还支持其他类型的样式标签吗? (不包括 css 的任何同义词)。如果没有,那为什么不呢?

<style type="???"> ... </style>

Are there any other types that browsers support for the style tag besides "text/css"? (Excluding any synonyms for css). If not, then why not?

<style type="???"> ... </style>

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

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

发布评论

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

评论(6

与君绝 2024-11-15 14:32:47

还有用于设置 XML 文档样式的 XSL(可扩展样式表语言)样式表。但它们不能与 HTML 一起使用。

CSS 适用于 XML 文档,但建议使用 XSL。与 CSS 相反,XSL 是一种转换语言(将以形式语言编写的输入文本转换为修改后的输出文本)。

更多参考:

http://www.w3.org/Style/

http://www.w3.org/Style/XSL/

There also are XSL (Extensible Stylesheet Language) stylesheets for styling XML documents. They cannot be used with HTML though.

CSS works for XML docs, but using XSL is recommended. Opposed to CSS, XSL is a Transformation Language (transforms input text written in a formal language into a modified output text).

Further references:

http://www.w3.org/Style/

http://www.w3.org/Style/XSL/

依 靠 2024-11-15 14:32:47

还有其他人。 JSSS 是由 Netscape 4 实现的。

这里有一个不错的总结 - <一href="http://www.articlesbase.com/web-design-articles/other-styling-languages-in-the-market-available-or-not-4036049.html" rel="nofollow">http:// /www.articlesbase.com/web-design-articles/other-styling-languages-in-the-market-available-or-not-4036049.html

请注意,在浏览器中,在 HTML5 中,type 属性是可选的。如果省略,则假定为“text/css”。

There were others. JSSS was implemented by Netscape 4.

There's a decent summary here - http://www.articlesbase.com/web-design-articles/other-styling-languages-in-the-market-available-or-not-4036049.html

Note that in browsers, and in HTML5, the type attribute is optional. If it is omitted, "text/css" is assumed.

我不在是我 2024-11-15 14:32:47

样式类型定义了该标签之间的文本的读取方式。该页面声明如下[14.2.3]:

http://www.w3。 org/TR/html4/present/styles.html

属性定义类型=
内容类型 [CI] 该属性
指定样式表语言
元素的内容和覆盖
默认样式表语言。这
样式表语言被指定为
内容类型(例如“text/css”)。
作者必须为此提供一个值
属性;没有默认值
对于此属性。

所以如果你希望它是 CSS,那么 text/css 是唯一的。对于其他的,请参阅:

http://www.w3。 org/TR/html4/types.html#type-content-type

Style type defines how will the text between this tags read. This page states as follows [14.2.3]:

http://www.w3.org/TR/html4/present/styles.html

Attribute definitions type =
content-type [CI] This attribute
specifies the style sheet language of
the element's contents and overrides
the default style sheet language. The
style sheet language is specified as a
content type (e.g., "text/css").
Authors must supply a value for this
attribute; there is no default value
for this attribute.

So text/css is the only one if you want it to be CSS. For the other ones refer to:

http://www.w3.org/TR/html4/types.html#type-content-type

窗影残 2024-11-15 14:32:47

它是内容类型(MIME 类型)。还有其他类型,但不适用于样式标签。

It is the content type (MIME Type). There are other types, but not applicable to the style tag.

玩物 2024-11-15 14:32:47

它只是指定元素的 MIME 内容类型。网站中使用的唯一样式语言是 text/css

如果使用 HTML5 文档类型,您可以简单地使用

It just specifies the MIME content type of the element. The only styling language used in websites is text/css.

If using the HTML5 doctype, you can simply use <style>#css{is:awesome}</style>.

梦归所梦 2024-11-15 14:32:47

没有。但可以想象可能是这样。

There are not. But there conceivably could be.

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