External Style Sheet is not valid in AMP Pages

前端 未结 2 393
醉话见心
醉话见心 2020-12-11 08:59

I am converting my HTML page into AMP Pages. I have seen test url https://validator.ampproject.org/#. This page is validate from AMP.

Screen Shot for H

相关标签:
2条回答
  • 2020-12-11 09:31

    External Style Stylesheets are forbidden in AMP. You must include the CSS declaration self (up to 10.000 lines) between. This is for save time by additional network request and blocking rendering.

    <style amp-custom>
    ...
    </style>
    
    0 讨论(0)
  • 2020-12-11 09:32

    currently there is no support for external css in Accelerated mobile pages. Although you can use inline css which was not allowed earlier. So you have to compromise with the css.

    0 讨论(0)
提交回复
热议问题