Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

style type="text/css" ... what else is there?

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>
like image 583
Dan Burton Avatar asked May 20 '11 21:05

Dan Burton


1 Answers

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/

like image 83
Johannes Pille Avatar answered Sep 19 '22 16:09

Johannes Pille