diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
commit | da78a9e329e272dedb2400b79a3bdeebff387d47 (patch) | |
tree | e6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/ko/web/api/htmlbrelement | |
parent | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff) | |
download | translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2 translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip |
initial commit
Diffstat (limited to 'files/ko/web/api/htmlbrelement')
-rw-r--r-- | files/ko/web/api/htmlbrelement/index.html | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/files/ko/web/api/htmlbrelement/index.html b/files/ko/web/api/htmlbrelement/index.html new file mode 100644 index 0000000000..85cbe5d72b --- /dev/null +++ b/files/ko/web/api/htmlbrelement/index.html @@ -0,0 +1,64 @@ +--- +title: HTMLBRElement +slug: Web/API/HTMLBRElement +tags: + - API + - HTML DOM + - Interface + - Reference +translation_of: Web/API/HTMLBRElement +--- +<div>{{APIRef("HTML DOM")}}</div> + +<p><strong><code>HTMLBRElement</code></strong> 인터페이스는 HTML 줄바꿈 요소({{htmlelement("br")}})를 나타냅니다. {{domxref("HTMLElement")}}를 상속합니다.</p> + +<p>{{InheritanceDiagram(600, 120)}}</p> + +<h2 id="속성">속성</h2> + +<p><em>부모인 {{domxref("HTMLElement")}}로부터 상속합니다.</em></p> + +<dl> + <dt>{{domxref("HTMLBRElement.clear")}} {{obsolete_inline}}</dt> + <dd>떠있는 요소 주변 텍스트의 흐름을 나타내는 {{domxref("DOMString")}}입니다.</dd> +</dl> + +<h2 id="메서드">메서드</h2> + +<p><em>부모인 {{domxref("HTMLElement")}}로부터 상속합니다.</em></p> + +<h2 id="명세">명세</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG', "#htmlbrelement", "HTMLBRElement")}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td>No change from {{SpecName("HTML5 W3C")}}</td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', "textlevel-semantics.html#the-br-element", "HTMLBRElement")}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td>No change from {{SpecName("DOM2 HTML")}}</td> + </tr> + </tbody> +</table> + +<h2 id="브라우저_호환성">브라우저 호환성</h2> + +<div> + + +<p>{{Compat("api.HTMLBRElement")}}</p> +</div> + +<h2 id="같이_보기">같이 보기</h2> + +<ul> + <li>인터페이스를 구현하는 HTML 요소 {{HTMLElement("br")}}.</li> +</ul> |