谷歌根据以下文档链接建议了优化 CSS 交付方法:
https://developers.google.com/speed/docs/insights/OptimizeCSSDelivery#dataURI
根据 Google 文档,我将 CSS 分为两个单独的 CSS 文件。a) small.css - 关键 CSS b) common.css - 其他普通 CSS
然后我放置了关键的 CSS 代码结尾。
eg: <html>
<head>
<link href="/css/common.css" rel="stylesheet" type="text/css">
</head>
<body>
content
</body>
<html>
<noscript><link rel="stylesheet" href="small.css"></noscript>
但是,当查看页面时,该特定的关键 CSS(small.css) 样式不会应用于 HTML 页面。请帮我解决这个优化 CSS 交付方法问题。