Good day everyone. I ran into a problem. CSS styles are loaded with a delay. When entering the site, all the HTML markup is loaded first and then after a fraction of seconds or maybe a couple of seconds of CSS and everything becomes as it should. how to solve a similar problem for the first time faced it.
- Connect inside the <head> </ head> tag? What does Firebug say? - ferrari
|
1 answer
Place styles at the top of the page between the <head>...</head>
tags. Exclude @import
in css
. Perhaps in the same head
there are connected scripts that block css
. They need to move down the page before </body>/
- That import is, and everything else is the scripts below as it should be and there are no styles outside Heade, I think the problem is import. Thanks - alexsis20102
|