aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/@media/hover/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/css/@media/hover/index.html')
-rw-r--r--files/ja/web/css/@media/hover/index.html66
1 files changed, 0 insertions, 66 deletions
diff --git a/files/ja/web/css/@media/hover/index.html b/files/ja/web/css/@media/hover/index.html
deleted file mode 100644
index 4fe5019a01..0000000000
--- a/files/ja/web/css/@media/hover/index.html
+++ /dev/null
@@ -1,66 +0,0 @@
----
-title: hover
-slug: Web/CSS/@media/hover
-tags:
- - '@media'
- - CSS
- - メディアクエリ
- - メディア特性
- - リファレンス
-translation_of: Web/CSS/@media/hover
----
-<div>{{cssref}}</div>
-
-<p><a href="/ja/docs/CSS">CSS</a> の <strong><code>hover</code></strong> <a href="/ja/docs/Web/CSS/Media_Queries/Using_media_queries#Media_features">メディア特性</a>は、<em>第一の</em>入力機構が要素の上でホバーすることができるかどうかをテストするために使用することができます。</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<p><code>hover</code> 特性は、以下の一覧のうち一つのキーワード値で指定します。</p>
-
-<dl>
- <dt><code>none</code></dt>
- <dd>第一の入力機構が全くホバーができないか、差支えなくホバーをすることができない (例えば、多くのモバイル機器は便利ではないものの、ロングタップのユーザー操作で擬似的にホバーを実現する)、又は第一の入力機構がない。</dd>
- <dt><code>hover</code></dt>
- <dd>第一の入力機構が、要素の上で差支えなくホバーすることができる。</dd>
-</dl>
-
-<h2 id="Example" name="Example">例</h2>
-
-<h3 id="HTML">HTML</h3>
-
-<pre class="brush: html">&lt;a href="#"&gt;Try hovering over me!&lt;/a&gt;</pre>
-
-<h3 id="CSS">CSS</h3>
-
-<pre class="brush: css">@media (hover: hover) {
- a:hover {
- background: yellow;
- }
-}</pre>
-
-<h3 id="Result" name="Result">結果</h3>
-
-<p>{{EmbedLiveSample("Example")}}</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', '#hover', 'hover')}}</td>
- <td>{{Spec2('CSS4 Media Queries')}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
-
-<p>{{Compat("css.at-rules.media.hover")}}</p>