현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
개요
HTML <bdo>
요소 (or HTML bidirectional override element) 는 현재 텍스트의 방향을 오버라이드 하기 위해 사용됩니다. It causes the directionality of the characters to be ignored in favor of the specified directionality.
사용 문맥
- 컨텐츠 범주 플로우 컨텐츠, 구문 컨텐츠, palpable 컨텐츠.
- 허용된 컨텐츠 구문 컨텐츠.
- 태그 생략 None, both the starting and ending tag are mandatory.
- 허용된 부모 요소 구문 컨텐츠를 허용하는 모든 요소.
- DOM 인터페이스
HTMLElement
Gecko 1.9.2 (Firefox 4) 을 포함한 이전에, Firefox는 이 요소를 위해 HTMLSpanElement 인터페이스를 구현했습니다.
속성
이 요소는 전역 속성을 포함합니다.
dir
- 이 요소의 텍스트 방향. 가능한 값들:
ltr
: 텍스트가 왼쪽에서 오른쪽 방향으로 이동해야 함을 나타냅니다.rtl
: 텍스트가 오른쪽에서 왼쪽 방향으로 이동해야 함을 나타냅니다.auto
: 요소의 내용에 기초하여 브라우저가 방향을 결정합니다.
예제
<!-- Switch text direction --> <p>This text will go left to right.</p> <p><bdo dir="rtl">This text will go right to left.</bdo></p>
결과
This text will go left to right.
.tfel ot thgir og lliw txet sihT.
참고
HTML4 사양은 이 요소들에 대해 어떠한 이벤트도 지정하지 않았습니다; 그것들은 XHTML에서 추가되었습니다. This is most likely an oversight.
사양
사양 | 상태 | 주석 |
---|---|---|
WHATWG HTML Living Standard The definition of '<bdo>' in that specification. |
Living Standard | |
HTML5 The definition of '<bdo>' in that specification. |
Recommendation | |
HTML 4.01 Specification The definition of '<bdo>' in that specification. |
Recommendation |
브라우저 호환성
기능 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
기능 | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | ? | ? | ? | (Yes) |