Is it wrong to place the [removed] tag after the </body> tag?

前端 未结 8 1118
长情又很酷
长情又很酷 2020-11-22 06:12

How wrong is it to place the script tag after the closing tag of the body (). ?


  ....
  
     ....
  <         


        
8条回答
  •  日久生厌
    2020-11-22 06:39

    Google actually recommends this in regards to 'CSS Optimization'. They recommend in-lining critical above-fold styles and deferring the rest(css file).

    Example:

    
      
        
        
      
        
    Hello, world!

    See: https://developers.google.com/speed/docs/insights/OptimizeCSSDelivery

提交回复
热议问题