설명
Introduced in HTML 5
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.
The Word Break Oppurtunity (<wbr>) HTML element는 브라우저에서 경우에 따라 줄바꿈을 해야 할 경우, 문서 내 줄바꿈이 일어날 위치를 지정할 수 있다. 해당위치에 항상 줄바꿈이 일어나게 하는 것은 아니다.(지나치게 의역인것 같습니다)
This element was first implemented in IE5.5 and was officially defined in HTML5.
이 element는 IE5.5에서 처음 구현되었고, HTML5에 공식채택되었다.
Usage Context
Permitted content | Empty |
Tag omission | This is a void element; it must have a start tag, but must not have an end tag. |
Permitted parent elements | Any element that accepts Phrasing content. |
Normative document | HTML 5, section 4.6.24 |
속성
This element has no attributes other than the global attributes.
이 element는 전역속성외에 다른 속성들을 갖지 않는다.
예제
The Yahoo Style Guide recommends breaking a URL before punctuation, to avoid leaving a punctuation mark at the end of the line, which the reader might mistake for the end of the URL.
The Yahoo Style Guide 에서는 구두점 전에 줄바꿈이 일어나게 하는것을 추천한다. 이것은 줄의 끝에 구두점이 남는 경우 글을 읽는 사람이 URL의 끝을 혼동하는 것을 막아준다.
<p>http://this<wbr>.is<wbr>.a<wbr>.really<wbr>.long<wbr>.example<wbr>.com/With<wbr>/deeper<wbr>/level<wbr>/pages</p>
Note: 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 (­) instead.
Note: <wbr> element는 줄 바꾸는 시점에 하이픈(-)을 넣지 않는다. 하이픈(-)을 줄 끝에 보이게 하려면, the soft hyphen character entitiy(­)를 사용한다.
DOM Interface
This element implements the HTMLElement interface.