aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/api/cssstylesheet/insertrule/index.html
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:49:24 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:49:24 +0100
commitde5c456ebded0e038adbf23db34cc290c8829180 (patch)
tree2819c07a177bb7ec5f419f3f6a14270d6bcd7fda /files/pl/web/api/cssstylesheet/insertrule/index.html
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-de5c456ebded0e038adbf23db34cc290c8829180.tar.gz
translated-content-de5c456ebded0e038adbf23db34cc290c8829180.tar.bz2
translated-content-de5c456ebded0e038adbf23db34cc290c8829180.zip
unslug pl: move
Diffstat (limited to 'files/pl/web/api/cssstylesheet/insertrule/index.html')
-rw-r--r--files/pl/web/api/cssstylesheet/insertrule/index.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/files/pl/web/api/cssstylesheet/insertrule/index.html b/files/pl/web/api/cssstylesheet/insertrule/index.html
new file mode 100644
index 0000000000..eeabdc8a31
--- /dev/null
+++ b/files/pl/web/api/cssstylesheet/insertrule/index.html
@@ -0,0 +1,42 @@
+---
+title: stylesheet.insertRule
+slug: Web/API/Stylesheet/insertRule
+tags:
+ - DOM
+ - Dokumentacja_Gecko_DOM
+ - Gecko
+ - Strony_wymagające_dopracowania
+ - Wszystkie_kategorie
+translation_of: Web/API/CSSStyleSheet/insertRule
+---
+<p>{{APIRef("CSSOM")}}</p>
+
+<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3>
+
+<p>Metoda <strong>insertRule</strong> dodaje nową regułę stylu do aktualnego arkuszu stylu.</p>
+
+<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3>
+
+<pre class="eval">stylesheet.insertRule(<em>rule</em>, <em>index</em>)
+</pre>
+
+<h3 id="Parametry" name="Parametry">Parametry</h3>
+
+<ul>
+ <li><code>rule</code> jest ciągiem zawierającym regułę do dodania (selector i declaration).</li>
+ <li><code>index</code> jest liczbą reprezentującą pozycję do dodania.</li>
+</ul>
+
+<h3 id="Przyk.C5.82ad" name="Przyk.C5.82ad">Przykład</h3>
+
+<pre> // push a new rule onto the top of my stylesheet
+ myStyle.insertRule("#blanc { color: white }", 0);
+</pre>
+
+<h3 id="Uwagi" name="Uwagi">Uwagi</h3>
+
+<p>For rule sets this contains both the selector and the style declaration. For at-rules, this specifies both the at-identifier and the rule content.</p>
+
+<h3 id="Specyfikacja" name="Specyfikacja">Specyfikacja</h3>
+
+<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/css.html#CSS-CSSStyleSheet-insertRule">insertRule </a></p>