From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/html/element%2Fcenter.html | 86 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 devdocs/html/element%2Fcenter.html (limited to 'devdocs/html/element%2Fcenter.html') diff --git a/devdocs/html/element%2Fcenter.html b/devdocs/html/element%2Fcenter.html new file mode 100644 index 00000000..e308f3b3 --- /dev/null +++ b/devdocs/html/element%2Fcenter.html @@ -0,0 +1,86 @@ +

<center>: The Centered Text element

+

Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

The <center> HTML element is a block-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 the CSS text-align property, which can be applied to the <div> element or to an individual <p>. For centering blocks, use other CSS properties like margin-left and margin-right and set them to auto (or set margin to 0 auto).

+
+

DOM interface

+

This element implements the HTMLElement interface.

+

Example 1

+
+

html

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

Example 2 (CSS alternative)

+
+

html

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

Example 3 (CSS alternative)

+
+

html

+
<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.

+

Specifications

+
+ + +
Specification
HTML Standard
# center
+

Browser compatibility

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariWebView AndroidChrome AndroidFirefox for AndroidOpera AndroidSafari on IOSSamsung Internet
center112
1Before Firefox 4, this element implemented the HTMLSpanElement interface instead of the standard HTMLElement interface.
Yes15≤44.418
4Before Firefox 4, this element implemented the HTMLSpanElement interface instead of the standard HTMLElement interface.
14≤3.21.0
+

See also

+
+

+ © 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
+ https://developer.mozilla.org/en-US/docs/Web/HTML/Element/center +

+
-- cgit v1.2.3