blob: 789cd7519a1064ef7a349299305f25f109a57ff1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
---
title: CSSRule.cssText
slug: Web/API/CSSRule/cssText
tags:
- API
- CSSOM
- Eigenschaft
- Referenz
translation_of: Web/API/CSSRule/cssText
---
<div>
{{ APIRef() }}</div>
<h2 id="Summary" name="Summary">Übersicht</h2>
<p><strong>cssText</strong> gibt den eigentlichen Text der Styleregel zurück. Um eine Stylesheet Regel dynamisch setzen zu können, siehe <a href="/de/docs/Web/API/CSS_Object_Model/Dynamische_Stylinginformationen_verwenden" title="DOM/Using_dynamic_styling_information">Dynamische Stylinginformationen verwenden.</a></p>
<h2 id="Syntax" name="Syntax">Syntax</h2>
<pre class="syntaxbox"><em>string</em> = cssRule.cssText
</pre>
<h2 id="Example" name="Example">Beispiel</h2>
<pre class="brush:html;"><style>
body { background-color: darkblue; }
</style>
<script>
var stylesheet = document.styleSheets[0];
alert(stylesheet.cssRules[0].cssText); // body { background-color: darkblue; }
</script>
</pre>
<h2 id="Specification" name="Specification">Spezifikation</h2>
<ul>
<li><a href="http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule">DOM Level 2 Style CSS - Interface CSSStyleRule (introduced in DOM Level 2)</a></li>
</ul>
|