样式类型=“text/css” ……还有什么?
除了“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
还有用于设置 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/
还有其他人。 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.
样式类型定义了该标签之间的文本的读取方式。该页面声明如下[14.2.3]:
http://www.w3。 org/TR/html4/present/styles.html
所以如果你希望它是 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
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
它是内容类型(MIME 类型)。还有其他类型,但不适用于样式标签。
It is the content type (MIME Type). There are other types, but not applicable to the style tag.
它只是指定元素的 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>
.没有。但可以想象可能是这样。
There are not. But there conceivably could be.