Skip to content

Instantly share code, notes, and snippets.

View johnrom's full-sized avatar
🦃

John Rom johnrom

🦃
View GitHub Profile
@johnrom
johnrom / fouc.html
Created March 4, 2016 16:16
FOUC/FOUT
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<title>FOUC</title>
<script>
document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/,'js');
</script>
</head>