Last active
August 29, 2015 14:02
-
-
Save siggiarni/f8370bb515460e1a6102 to your computer and use it in GitHub Desktop.
CSS space
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
/* whitespace */ | |
.foo { | |
content: "\0020"; | |
} | |
/* non-breaking space */ | |
.bar { | |
content: "\00a0"; | |
} | |
/* line break */ | |
.boo { | |
content: "\a"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment