From 1109132f09d75da9a28b649c7677bb6ce07c40c0 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:45 -0500 Subject: initial commit --- files/he/web/html/element/center/index.html | 104 ++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 files/he/web/html/element/center/index.html (limited to 'files/he/web/html/element/center') diff --git a/files/he/web/html/element/center/index.html b/files/he/web/html/element/center/index.html new file mode 100644 index 0000000000..ed7838fe73 --- /dev/null +++ b/files/he/web/html/element/center/index.html @@ -0,0 +1,104 @@ +--- +title: '
: תגית למרכוז טקסט' +slug: Web/HTML/Element/center +translation_of: Web/HTML/Element/center +--- +
 
+ +
+

{{HTMLRef}}

+ +

תגית <center> מאגדת בתוכה מספר כותרות <h1> עד <h6> ונועדה כדי ליצור כותרות משנה.

+ +

* תגית זו אינה חלק מתקן HTML5.

+ +

 

+ +

{{EmbedInteractiveExample("pages/tabbed/center.html", "tabbed-standard")}}

+ + + + + + + + + + + + + + + + + + + + +
קטגוריהתוכן.
תוכן מורשה{{HTMLElement("h1")}}
+ {{HTMLElement("h2")}}
+ {{HTMLElement("h3")}}
+ {{HTMLElement("h4")}}
+ {{HTMLElement("h5")}}
+ {{HTMLElement("h6")}}
תגיות הורים מורשותתגית זו מורשת להופיע בגוף המסמך אך אינה חייבת להיות כפופה בצורה ישירה אל תגית {{HTMLElement("body")}}.
ממשק DOM{{domxref("HTMLElement")}}
+ +

תארים

+ +

תגית זו נכללת ברשימת התארים הגלובליים.

+ +
+
+

דוגמא - מרכוז טקסט באמצעות HTML

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

דוגמא - מרכוז טקסט באמצעות CSS

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

דוגמא 2 - מרכוז טקסט באמצעות CSS

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

ראה גם

+ +
    +
  • {{Cssxref("text-align")}}
  • +
  • {{Cssxref("display")}}
  • +
+
+ +
 
+ +
 
+ +
{{obsolete_header()}}
+ +

The obsolete HTML Center Element (<center>) 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, {{HTMLElement("body")}}.

+ +

This tag has been deprecated in HTML 4 (and XHTML 1) in favor of the CSS {{Cssxref("text-align")}} property, which can be applied to the {{HTMLElement("div")}} element or to an individual {{HTMLElement("p")}}. For centering blocks, use other CSS properties like {{Cssxref("margin-left")}} and {{Cssxref("margin-right")}} and set them to auto (or set {{Cssxref("margin")}} to 0 auto).

+ +

DOM interface

+ +

This element implements the {{domxref("HTMLElement")}} interface.

+ +
+

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

+
+ +

Note

+ +

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.

-- cgit v1.2.3-54-g00ecf