From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- files/ko/web/html/element/center/index.html | 51 +++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 files/ko/web/html/element/center/index.html (limited to 'files/ko/web/html/element/center/index.html') diff --git a/files/ko/web/html/element/center/index.html b/files/ko/web/html/element/center/index.html new file mode 100644 index 0000000000..bd545b19f6 --- /dev/null +++ b/files/ko/web/html/element/center/index.html @@ -0,0 +1,51 @@ +--- +title:
+slug: Web/HTML/Element/center +translation_of: Web/HTML/Element/center +--- +
{{deprecated_header()}}
+ +

개요

+ +

이 HTML Center (<center>)요소는 또다른 블록요소을 포함하거나, 인라인요소(Inline)를 포함할 수 있는 블록속성(block-level) 의 요소이다. 그리고 해당 <center> 요소안에 포함된 전체요소는  <center>의 내용안에 가운데 정렬이 된다. (통상적으로 {{HTMLElement("body")}}로 쓰임).

+ +

이 태그는 HTML4(또는 XHTML 1)이후에는 잘사용되지 않고, CSS의 {{Cssxref("text-align")}} 속성이 즐겨 사용된다.  {{HTMLElement("div")}} 요소나 {{HTMLElement("p")}}요소 같은 블록속성이  있는 요소에 사용될 수 있다.또 다른 방법으로는 CSS속성을 사용하여 {{Cssxref("margin-left")}} 또는 {{Cssxref("margin-right")}} 또는 margin을 자동(Css("margin") 를 0 auto)으로 설정한다.

+ +

DOM 인터페이스

+ +

이 요소는 {{domxref("HTMLElement")}} 인터페이스를 구현합니다.

+ +
+

Implementation note: up to Gecko 1.9.2 inclusive, Firefox implements the {{domxref("HTMLSpanElement")}} interface for this element.

+
+ +

예제 1

+ +
<center>This text will be centered.
+<p>So will this paragraph.</p></center>
+
+ +

예제 2 (CSS 대안)

+ +
<div style="text-align:center">This text will be centered.
+<p>So will this paragraph.</p></div>
+
+ +

예제 3 (CSS 대안)

+ +
<p style="text-align:center">This line will be centered.<br>
+And so will this line.</p>
+
+ +

메모

+ +

Applying {{Cssxref("text-align")}}:center to a {{HTMLElement("div")}} or {{HTMLElement("p")}} element centers the contents of those elements while leaving their overall dimensions unchanged.

+ +

더 보기

+ + + +
{{HTMLRef}}
-- cgit v1.2.3-54-g00ecf