Are there any other style types besides CSS for HTML?

Viewed 1159
<style type="text/css">..</style>

From the above HTML, I think there should be, but I've never seen it, is there?

5 Answers

As of HTML5, you don't need to supply a type any more, since there are no other relevant style types. The same goes for script.

As far as I know, not in HTML, but XML (and consequently XHTML) support XSL stylesheets using XML style sheet definitions:

<?xml-stylesheet type="text/xsl" href="foo.xsl" title="XSL Rules"?>

It's worth mentioning because the same PI will allow you to attach CSS style sheets to XML documents as well.

Related