Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • 8
    You just need to put a space after the escape sequence, as specified: '\a0 Break'. '\0000a0Break' is not reliable. Commented Dec 21, 2011 at 19:39
  • @PointedEars Interesting, so then this space is a terminator and does not get included into the string? Commented Jan 3, 2012 at 5:53
  • 2
    See CSS 2.1, section "4.1.3 Characters and case". Which also shows that your approach SHOULD be reliable per CSS 2.1. But I find the whitespace approach cleaner (upwards-compatible) and having a smaller footprint. Commented Jan 3, 2012 at 13:29