confi-emacs-inicial/elpa/ac-html-20151005.731/completion-data/html-tag-short-docs/wbr

19 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

The Word Break Opportunity (<wbr>) HTML element represents a position within text where the browser may optionally break a line, though its line-breaking rules would not otherwise create a break at that location.
On UTF-8 encoded pages, <wbr> behaves like the U+200B ZERO-WIDTH SPACE code point. In particular, it behaves like a Unicode bidi BN code point, meaning it has no effect on bidi-ordering: <div dir=rtl>123,<wbr>456</div> displays, when not broken on two lines, 123,456 and not 456,123.
For the same reason, the <wbr> element does not introduce a hyphen at the line break point. To make a hyphen appear only at the end of a line, use the soft hyphen character entity (&shy;) instead.
This element was first implemented in Internet Explorer 5.5 and was officially defined in HTML5.
Permitted content:
Empty
Tag omission:
It is an empty element; it must have a start tag, but must not have an end tag.
Permitted parent elements:
Any element that accepts phrasing content.
DOM Interface
This element implements the HTMLElement interface.