Created
December 19, 2010 23:41
-
-
Save lindsayevans/747837 to your computer and use it in GitHub Desktop.
Bits of code for this blog post: http://linz.id.au/2010/12/19/impact-of-attribute-order-on-compression
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
<!DOCTYPE html> | |
<html lang="en"> | |
<body> | |
<nav role="navigation" id="primary">abc</nav> | |
<nav role="navigation" id="secondary">def</nav> | |
<nav role="navigation" id="page">ghi</nav> | |
<nav role="navigation" id="footer">jkl</nav> | |
</body> | |
</html> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<body> | |
<nav id="primary" role="navigation">abc</nav> | |
<nav id="secondary" role="navigation">def</nav> | |
<nav id="page" role="navigation">ghi</nav> | |
<nav id="footer" role="navigation">jkl</nav> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment