aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/css/index.html
blob: 57476346977e53ab188c614c14683227c2833e51 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
title: CSS
slug: Web/API/CSS
tags:
  - API
  - CSSOM
  - Interface
  - Painting
  - Reference
translation_of: Web/API/CSS
---
<div>{{APIRef("CSSOM")}}</div>

<p><strong><code>CSS</code></strong> インターフェイス は CSS に関連した便利なメソッドを持っています。このインターフェイスにはオブジェクトは実装されていません: 静的メソッドのみを含んでいるため、実用的なインターフェイスになっています。</p>

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

<p><em>CSS インターフェイスはユーティリティインターフェイスです。この型のオブジェクトは作れません: 静的プロパティのみ定義されています。</em></p>

<h3 id="Static_properties" name="Static_properties">静的プロパティ</h3>

<dl>
 <dt>{{DOMxRef("CSS.paintWorklet")}} {{Experimental_Inline}}{{SecureContext_Inline}}</dt>
 <dd>描画に関するすべてのクラスを担当する Worklet へのアクセスを提供します。</dd>
</dl>

<h2 id="Methods" name="Methods">メソッド</h2>

<p><em>CSS インターフェイスはユーティリティインターフェイスです。この型のオブジェクトは作れません: 静的メソッドのみ定義されています。</em></p>

<h3 id="Static_methods" name="Static_methods">静的メソッド</h3>

<p><em>継承している静的メソッドはありません。</em></p>

<dl>
 <dt>{{DOMxRef("CSS.registerProperty()")}}</dt>
 <dd>{{cssxref('--*', 'カスタムプロパティ')}}を登録し、プロパティ型のチェック、デフォルト値、およびそれらの値を継承するまたは継承しないプロパティを許可します。</dd>
 <dt>{{DOMxRef("CSS.supports()")}}</dt>
 <dd>与えられたパラメーターで、<em>プロパティと値</em>のペアや条件がサポートされているかどうかを示す {{JSxRef("Boolean")}} を返します。</dd>
 <dt>{{DOMxRef("CSS.escape()")}}</dt>
 <dd>主に CSS セレクターの一部として使用するための文字列をエスケープするのに使用できます。</dd>
 <dt>{{DOMxRef("CSS.factory_functions", 'CSS ファクトリー関数')}}</dt>
 <dd>使用したファクトリー関数のメソッドの名前を単位としてパラメーターの数値の値を持つ新しい <code><a href="/ja/docs/Web/API/CSSUnitValue">CSSUnitValue</a></code> を返すために使用できます。</dd>
 <dd>
 <pre class="notranslate">CSS.em(3) // CSSUnitValue {value: 3, unit: "em"}</pre>
 </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('CSS Painting API','#dom-css-paintworklet','paintWorklet')}}</td>
   <td>{{Spec2('CSS Painting API')}}</td>
   <td>静的プロパティ <code>paintWorklet</code> の追加</td>
  </tr>
  <tr>
   <td>{{SpecName('CSSOM', '#the-css.escape()-method', 'CSS')}}</td>
   <td>{{Spec2('CSSOM')}}</td>
   <td>静的メソッド <code>escape()</code> の追加</td>
  </tr>
  <tr>
   <td>{{SpecName('CSS3 Conditional', '#the-css-interface', 'CSS')}}</td>
   <td>{{Spec2('CSS3 Conditional')}}</td>
   <td>初期定義</td>
  </tr>
 </tbody>
</table>

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



<p>{{Compat("api.CSS", 1)}}</p>

<h2 id="See_Also" name="See_Also">関連情報</h2>

<ul>
 <li><a href="/ja/docs/Components.utils.importGlobalProperties">Components.utils.importGlobalProperties</a></li>
</ul>