Fix for FOUC :
At the top of your HTML:
<!doctype html>
<html>
<head>
<style>html{visibility: hidden;opacity:0;}</style>
Just before the body closes:
<style>html{visibility: visible;opacity:1;}</style>
</body>
Or at the end of your last .css file:
html {
visibility: visible;
opacity: 1;
}
Thanks, fixed it :)