Created
October 2, 2019 13:28
-
-
Save treetop1500/b454916dd4c2c6075731e1189dbf121d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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