diff options
Diffstat (limited to 'files/pl/mozilla/tech/xul/atrybut/align/index.html')
-rw-r--r-- | files/pl/mozilla/tech/xul/atrybut/align/index.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/files/pl/mozilla/tech/xul/atrybut/align/index.html b/files/pl/mozilla/tech/xul/atrybut/align/index.html new file mode 100644 index 0000000000..f296579a9f --- /dev/null +++ b/files/pl/mozilla/tech/xul/atrybut/align/index.html @@ -0,0 +1,33 @@ +--- +title: align +slug: Mozilla/Tech/XUL/Atrybut/align +tags: + - Atrybuty_XUL + - Dokumentacja_XUL + - Strony_wymagające_dopracowania +translation_of: Archive/Mozilla/XUL/Attribute/align +--- +<div class="noinclude"><span class="breadcrumbs xulRefAttr_breadcrumbs">« <a href="/pl/docs/Dokumentacja_XUL">Dokumentacja XUL</a></span></div> + +<dl> + <dt><code id="a-align"><a href="https://developer.mozilla.org/pl/docs/Mozilla/Tech/XUL/Atrybut/align">align</a></code></dt> + <dd>Typ:<em>jedna z wartości poniżej</em></dd> + <dd>Atrybut <code id="a-align"><a href="https://developer.mozilla.org/pl/docs/Mozilla/Tech/XUL/Atrybut/align">align</a></code> określa jak elementy potomne pudełka są rozmieszczone kiedy rozmiar pudełka jest większy, niż wszystkie rozmiary razem dzieci elementu. Dla pudełek, które posiadają poziomą orientację, to określa jak jego dzieci będą rozmieszczone pionowo. Atrybut <code id="a-pack"><a href="https://developer.mozilla.org/pl/docs/Mozilla/Tech/XUL/Atrybut/pack">pack</a></code> jest podobny do rozmieszczenia, lecz jest stosowany do określenia pozycji w przeciwnych kierunkach. Możemy także określić wartość rozmieszczenia stosując własność stylu <a href="pl/CSS/-moz-box-align">-moz-box-align</a>.</dd> +</dl> + +<ul> + <li><code>start</code>: Elementy potomne są rozmieszczone od początku lewego lub górnego brzegu pudełka. Jeśli pudełko jest większe, niż cały rozmiar dziecka, to dodatkowa przestrzeń jest umieszczona w prawej lub dolnej stronie.</li> + <li><code>center</code>: Extra space is split equally along each side of the child elements, resulting the children being placed in the center of the box.</li> + <li><code>end</code>: Child elements are placed on the right or bottom edge of the box. If the box is larger than the total size of the children, the extra space is placed on the left or top side.</li> + <li><code>baseline</code>: This value applies to horizontally oriented boxes only. It causes the child elements to be aligned so that their text labels are lined up.</li> + <li><code>stretch</code>: The child elements are stretched to fit the size of the box. For a horizontal box, the children are stretched to be the height of the box. For a vertical box, the children are stretched to be the width of the box. If the size of the box changes, the children stretch to fit. Use the <code id="a-flex"><a href="https://developer.mozilla.org/pl/docs/Mozilla/Tech/XUL/Atrybut/flex">flex</a></code> attribute to create elements that stretch in the opposite direction.</li> + <li><code>left</code>: <span title="This deprecated API should no longer be used, but will probably still work."><i class="icon-thumbs-down-alt"> </i></span> Elementy są rozmieszczone na ich lewych brzegach.</li> + <li><code>center</code>: <span title="This deprecated API should no longer be used, but will probably still work."><i class="icon-thumbs-down-alt"> </i></span> Elementy są wyśrodkowane poziomo.</li> + <li><code>right</code>: <span title="This deprecated API should no longer be used, but will probably still work."><i class="icon-thumbs-down-alt"> </i></span> Elementy są rozmieszczone na ich prawych brzegach.</li> +</ul> + +<div class="noinclude"> +<h3 id="Zobacz_tak.C5.BCe" name="Zobacz_tak.C5.BCe">Zobacz także</h3> + +<p>Atrybut <code id="a-pack"><a href="https://developer.mozilla.org/pl/docs/Mozilla/Tech/XUL/Atrybut/pack">pack</a></code></p> +</div> |