aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/cssstylerule/index.html
blob: 8881989f68dab0467125bfaf2c8f9636ce8c598c (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
title: CSSStyleRule
slug: Web/API/CSSStyleRule
tags:
  - API
  - CSSOM
  - CSSStyleRule
  - Interface
  - Reference
translation_of: Web/API/CSSStyleRule
---
<p>{{ APIRef("CSSOM") }}</p>

<p><strong><code>CSSStyleRule</code></strong> は、単一の CSS スタイル規則を表します。これは、型定数の値が <code>1</code> (<code>CSSRule.STYLE_RULE</code>) の {{domxref("CSSRule")}} インターフェイスを実装します。</p>

<h2 id="Properties" name="Properties">プロパティ</h2>

<dl>
 <dt id="selectorText">{{domxref("CSSStyleRule.selectorText")}}</dt>
 <dd>この規則のセレクターのテキスト表現を返します。例: <code>"h1,h2"</code></dd>
 <dt id="style">{{domxref("CSSStyleRule.style")}} {{readonlyinline}}</dt>
 <dd>この規則の {{domxref("CSSStyleDeclaration")}} オブジェクトを返します。</dd>
 <dt>{{domxref("CSSStyleRule.styleMap")}} {{readonlyinline}}</dt>
 <dd>{{domxref('StylePropertyMap')}} オブジェクトを返し、これによってこの規則のプロパティと値の組へアクセスできます。</dd>
</dl>

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
   <th scope="col">備考</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{ SpecName('CSSOM', '#the-cssstylerule-interface', 'CSSStyleRule') }}</td>
   <td>{{ Spec2('CSSOM') }}</td>
   <td>変更なし</td>
  </tr>
  <tr>
   <td>{{ SpecName('DOM2 Style', 'css.html#CSS-CSSStyleRule', 'CSSRule') }}</td>
   <td>{{ Spec2('DOM2 Style') }}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>

<p>{{Compat("api.CSSStyleRule")}}</p>