현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
Deprecated
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.
Summary
이 HTML Center (<center>
)요소는 또다른 블록요소을 포함하거나, 인라인요소(Inline)를 포함할 수 있는 블록속성(block-level) 의 요소이다. 그리고 해당 <center> 요소안에 포함된 전체요소는 <center>의 내용안에 가운데 정렬이 된다. (통상적으로 <body>
로 쓰임).
이 태그는 HTML4(또는 XHTML 1)이후에는 잘사용되지 않고, CSS의 text-align
속성이 즐겨 사용된다. <div>
요소나 <p>
요소 같은 블록속성이 있는 요소에 사용될 수 있다.또 다른 방법으로는 CSS속성을 사용하여 margin-left
또는 margin-right
또는 margin을 자동(Css("margin") 를 0 auto)
으로 설정한다.
DOM Interface
This element implements the HTMLElement
interface.
Implementation note: up to Gecko 1.9.2 inclusive, Firefox implements the HTMLSpanElement
interface for this element.
Example 1
<center>This text will be centered. <p>So will this paragraph.</p></center>
Example 2 (CSS alternative)
<div style="text-align:center">This text will be centered. <p>So will this paragraph.</p></div>
Example 3 (CSS alternative)
<p style="text-align:center">This line will be centered.<br> And so will this line.</p>
Note
Applying text-align
:center
to a
<div>
or <p>
element centers the contents of those elements while leaving their overall dimensions unchanged.