aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/cssmediarule/index.html
blob: b386fbb0835fb9d831ce7d52eda88c2143f1c6b3 (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
---
title: CSSMediaRule
slug: Web/API/CSSMediaRule
tags:
  - API
  - CSSOM
  - Interface
  - Reference
translation_of: Web/API/CSSMediaRule
---
<div>{{APIRef("CSSOM")}}</div>

<p><span class="seoSummary"><strong><code>CSSMediaRule</code></strong> 인터페이스는 하나의 CSS {{cssxref("@media")}} 규칙을 나타냅니다.</span> {{domxref("CSSConditionRule")}} 인터페이스를 구현하므로, {{domxref("CSSGroupingRule")}}{{domxref("CSSRule")}} 인터페이스도 유형값 <code>4</code> (<code>CSSRule.MEDIA_RULE</code>)로 구현합니다.</p>

<h2 id="구문">구문</h2>

<p><a href="https://heycam.github.io/webidl/" title="http://dev.w3.org/2006/webapi/WebIDL/">WebIDL</a> 형식을 사용해 서술합니다.</p>

<pre class="syntaxbox">interface CSSMediaRule : CSSConditionRule {
    readonly attribute MediaList media;
}
</pre>

<h2 id="속성">속성</h2>

<p><code>CSSMediaRule</code>{{domxref("CSSConditionRule")}}, 그리고 {{domxref("CSSGroupingRule")}}{{domxref("CSSRule")}}로서 해당 인터페이스의 속성을 구현합니다. 다음과 같은 자체 속성을 가집니다.</p>

<dl>
 <dt>{{domxref("CSSMediaRule.media")}} {{readonlyinline}}</dt>
 <dd>스타일 정보를 적용할 매체 정보를 나타내는 {{domxref("MediaList")}}입니다.</dd>
</dl>

<h2 id="메서드">메서드</h2>

<p><code>CSSMediaRule</code>{{domxref("CSSConditionRule")}}, 그리고 {{domxref("CSSGroupingRule")}}{{domxref("CSSRule")}}로서 해당 인터페이스의 메서드를 구현합니다. 자체 메서드는 가지지 않습니다.</p>

<h2 id="명세">명세</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{ SpecName('CSS3 Conditional', '#the-cssmediarule-interface', 'CSSMediaRule') }}</td>
   <td>{{ Spec2('CSS3 Conditional')}}</td>
   <td>Make it derived from the {{domxref("CSSConditionRule")}}.</td>
  </tr>
  <tr>
   <td>{{ SpecName('CSSOM', '#the-cssmediarule-interface', 'CSSMediaRule') }}</td>
   <td>{{ Spec2('CSSOM') }}</td>
   <td>No changes from {{SpecName('DOM2 Style')}}</td>
  </tr>
  <tr>
   <td>{{SpecName('DOM2 Style', 'css.html#CSS-CSSMediaRule', 'CSSMediaRule') }}</td>
   <td>{{ Spec2('DOM2 Style') }}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="브라우저_호환성">브라우저 호환성</h2>



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