Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

<center>: The Centered Text element

The<center>HTML element is ablock-level element that displays its block-level or inline contents centered horizontally within its containing element. The container is usually, but isn't required to be,<body>.

This tag has been deprecated in HTML 4 (and XHTML 1) in favor of theCSStext-align property, which can be applied to the<div> element or to an individual<p>. For centering blocks, use other CSS properties likemargin-left andmargin-right and set them toauto (or setmargin to0 auto).

DOM interface

This element implements theHTMLElement interface.

Example 1

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

Result

Example 2 (CSS alternative)

html
<div>  This text will be centered.  <p>So will this paragraph.</p></div>
css
.center {  text-align: center;}

Result

Example 3 (CSS alternative)

html
<p>  This line will be centered.<br />  And so will this line.</p>
css
.center {  text-align: center;}

Result

Note:Applyingtext-align: center to a<div> or<p> element centers thecontents of those elements while leaving their overall dimensions unchanged.

Specifications

Specification
HTML
# center

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp