text/stylesheet

text/stylesheet

[1] html - Difference between type="text/css" and type="text/stylesheet"? - Stack Overflow ( 版) <http://stackoverflow.com/questions/12457812/difference-between-type-text-css-and-type-text-stylesheet>

[2] Invalid <link rel type> causes Firefox to not render the stylesheet · Issue #14 · kpdecker/six-speed ( 版) <https://github.com/kpdecker/six-speed/issues/14>

[3] IEのスタイルシート - 開発用メモ ( 版) <http://hariganet.hatenablog.com/entry/2013/08/01/020622>

type="text/stylesheet"

という書き方自体がだめらしい。

つくって覚えるJavaScript+HTML5入門では、type="text/stylesheet"になってたんだけど、なんで?

[4] Doing More with Less ( 版) <http://www.stylinwithcss.com/blog/post.php?s=2013-05-31-doing-more-with-less>

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

[5] Mojolicious::Plugin::AssetPack::Manual::Include - search.cpan.org ( 版) <http://search.cpan.org/~jhthorsen/Mojolicious-Plugin-AssetPack-0.55/lib/Mojolicious/Plugin/AssetPack/Manual/Include.pod>

<style type="text/stylesheet">

/* your css here */

</style>

[6] CSS loaded but not applied • mozillaZine Forums ( 版) <http://forums.mozillazine.org/viewtopic.php?f=25&t=645641>

CSS = document.createElement("link");

CSS.href = "a.css";

CSS.rel = "stylesheet";

CSS.type = "text/stylesheet";