Skip to content

Instantly share code, notes, and snippets.

@barrd
barrd / no-fouc.html
Last active February 26, 2021 19:57 — forked from johnpolacek/gist:3827270
Prevent FOUC (flash of unstyled content)
<!-- @see http://johnpolacek.com/2012/10/03/help-prevent-fouc -->
<!-- WordPress implementation -->
<!-- Add to header -->
<style type="text/css">
.no-fouc {display: none;}
</style>
<script>
document.documentElement.className = 'no-fouc';
</script>