blob: a0c2347d1f2795abd87ff4802e825f5223103de5 (
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
|
---
title: width
slug: Web/CSS/@media/width
tags:
- '@media'
- CSS
- メディアクエリ
- メディア特性
- リファレンス
translation_of: Web/CSS/@media/width
---
<div>{{cssref}}</div>
<p><a href="/ja/docs/CSS">CSS</a> の <strong><code>width</code></strong> <a href="/ja/docs/Web/CSS/Media_Queries/Using_media_queries#Media_features">メディア特性</a>は、{{glossary("viewport", "ビューポート")}}の幅 (又は<a href="/ja/docs/Web/CSS/Paged_media">ページ付きメディア</a>のページボックスの幅) をテストするために使用することができます。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<p><code>width</code> 特性は、ビューポートの幅を表す {{cssxref("<length>")}} 値として指定します。これは範囲の特性であり、つまり接頭辞の付いた <strong><code>min-width</code></strong> 及び <code><strong>max-width</strong></code> の変化形を使用して、それぞれ最小値と最大値をクエリすることができます。</p>
<h2 id="Example" name="Example">例</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><div>ビューポートの幅を変更しながらこの要素を見ていてください。</div></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">/* 正確な幅 */
@media (width: 360px) {
div {
color: red;
}
}
/* 最小幅 */
@media (min-width: 35rem) {
div {
background: yellow;
}
}
/* 最大幅 */
@media (max-width: 50rem) {
div {
border: 2px solid blue;
}
}
</pre>
<h3 id="Result" name="Result">結果</h3>
<p>{{EmbedLiveSample('Example','90%')}}</p>
<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('CSS4 Media Queries', '#width', 'width')}}</td>
<td>{{Spec2('CSS4 Media Queries')}}</td>
<td>値に負の数を取ることができるようになり、この場合は false と計算されます。</td>
</tr>
<tr>
<td>{{SpecName('CSS3 Media Queries', '#width', 'width')}}</td>
<td>{{Spec2('CSS3 Media Queries')}}</td>
<td>初回定義。値は非負でなければなりませんでした。</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<p>{{Compat("css.at-rules.media.width")}}</p>
|