OctoberCMS では、以下を使用して CSS ファイルをページに挿入できます。
public function onRun()
{
$this->addCss('http://yui.yahooapis.com/pure/0.6.0/grids-responsive-min.css');
}
わかりませんが、上記のコードで IE のバージョンを確認するにはどうすればよいですか? OctoberCMS の次の CSS コードに相当するものは何ですか?
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/grids-responsive-old-ie-min.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/grids-responsive-min.css">
<!--<![endif]-->