- AMP:Building Accelerated Mobile Pages
- Ruadhan O'Donoghue
- 163字
- 2021-07-08 10:04:01
Using CSS in AMP pages
We're not finished converting our page to AMP just yet; let's deal with the validation error that mentions the style sheet next:
The attribute 'href' in tag 'link rel=stylesheet for fonts' is set to the invalid value 'style.css'.
One of the ways that AMP achieves its speed is by forbidding linked external style sheets. This means that all CSS must be inlined in the <head> of your AMP page. Open up the style sheet, and copy-paste all of the CSS rules you find into the AMP document. You'll need to wrap this CSS in a <style amp-custom> tag like this:
<style amp-custom>
html, body, ul {
margin:0;
padding:0;
}
...
</style>
You can only have one <style> tag in your AMP document, and it must include the amp-custom attribute.
Inlined CSS is limited to 50 KB per page, which is considered enough to style a single page
Inlined CSS is limited to 50 KB per page, which is considered enough to style a single page
If you reload the page now, you should see that the CSS validation error message is now resolved.
推薦閱讀
- Java應(yīng)用與實(shí)戰(zhàn)
- Mastering PHP Design Patterns
- Access 2010數(shù)據(jù)庫基礎(chǔ)與應(yīng)用項(xiàng)目式教程(第3版)
- 飛槳PaddlePaddle深度學(xué)習(xí)實(shí)戰(zhàn)
- 精通Linux(第2版)
- 0 bug:C/C++商用工程之道
- D3.js By Example
- Hands-On GUI Programming with C++ and Qt5
- Serverless Web Applications with React and Firebase
- 工業(yè)機(jī)器人離線編程
- Oracle 12c從入門到精通(視頻教學(xué)超值版)
- Java 9 with JShell
- Mastering SciPy
- Swift High Performance
- Mastering Node.js