Skip to content

Instantly share code, notes, and snippets.

@treetop1500
Created October 2, 2019 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save treetop1500/b454916dd4c2c6075731e1189dbf121d to your computer and use it in GitHub Desktop.
Save treetop1500/b454916dd4c2c6075731e1189dbf121d to your computer and use it in GitHub Desktop.
Fix for FOUC :
**At the top of your HTML:**
<!doctype html>
<html>
<head>
<style>html{visibility: hidden;opacity:0;}</style>
**At the end of your last .css file:**
html {
visibility: visible;
opacity: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment