我正在实现纯 CSS 框架。
在我的 html 头中:
<!--[if lt IE 8]>
link(rel="stylesheet", href="http://yui.yahooapis.com/pure/0.5.0/grids-responsive-old-ie-min.css")
<![endif]-->
<!--[if gt IE 8 ]><!-->
link(rel="stylesheet", href="http://yui.yahooapis.com/pure/0.5.0/grids-responsive-min.css")
<!--<![endif]-->
<!--[if lt IE 9]><!
script(src='http://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7/html5shiv.js')
<![endif]-->
问题是它只能在 IE 9+ 上正确呈现。在 IE 8 上,它似乎也没有拉起“grids-responsive-old-ie-min.css”文件。
我的翡翠写得好吗?