1 Second Of Delay Of Css On Html Page Load?
Solution 1:
for others who have the same problem,
in my situation the delay was from autofocus=""
attribute in the text input, so I removed that and the problem solved!
hope this helps
Solution 2:
I would suggest the following :-
Remove any jquery from header and place it to the bottom of the page .
Remove excess white space from your coding.
Reduce the size of your images files.
Try to combine many scripts into one if possible.
Remove any unnecessary elements .
Combine all style sheets into one - lesser files , lesser response time and faster loading time.
Optimize your background image or any image you are using on the page for faster loading.
In the end use Gzip to minify JS , CSS and HTML . Never use it on images,videos,pdf's - wont do any additional compression ,but might increase the size .
Solution 3:
Just one LINK element or SCRIPT element inside a document's HEAD element will prevent a flash of unstyled content.
Solution 4:
Put a script tag with 0 inside the head
<head><!-- Other head stuff ... --><script>0</script></head>
Post a Comment for "1 Second Of Delay Of Css On Html Page Load?"