aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/-ms-accelerator/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/css/-ms-accelerator/index.html')
-rw-r--r--files/ja/web/css/-ms-accelerator/index.html76
1 files changed, 0 insertions, 76 deletions
diff --git a/files/ja/web/css/-ms-accelerator/index.html b/files/ja/web/css/-ms-accelerator/index.html
deleted file mode 100644
index a057272e2e..0000000000
--- a/files/ja/web/css/-ms-accelerator/index.html
+++ /dev/null
@@ -1,76 +0,0 @@
----
-title: '-ms-accelerator'
-slug: Web/CSS/-ms-accelerator
-tags:
- - CSS
- - CSS プロパティ
- - Microsoft 拡張
- - Non-standard
- - リファレンス
-translation_of: Archive/Web/CSS/-ms-accelerator
----
-<div>{{CSSRef}}</div>
-
-<div>{{non-standard_header}}</div>
-
-<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>-ms-accelerator</code></strong> プロパティは、オブジェクトがキーボードショートカットを表しているかどうかを示す文字列を設定したり受け取ったりする <a href="/ja/docs/Web/CSS/Microsoft_CSS_extensions">Microsoft 拡張</a>です。</p>
-
-<p>{{cssinfo}}</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="brush: css">/* オブジェクトはキーボードショートカットではない (既定値) */
--ms-accelerator: false
-/* オブジェクトはキーボードショートカットである */
--ms-accelerator: true
-</pre>
-
-<h3 id="Values" name="Values">値</h3>
-
-<dl>
- <dt><code>false</code></dt>
- <dd>
- <p>オブジェクトはキーボードショートカットではありません。</p>
- </dd>
- <dt><code>true</code></dt>
- <dd>
- <p>オブジェクトはキーボードショートカットです。</p>
- </dd>
-</dl>
-
-<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>
-
-<pre class="syntaxbox">{{csssyntax}}</pre>
-
-<h2 id="Examples" name="Examples">例</h2>
-
-<p>この例は {{HTMLElement("u")}} 要素で <code>-ms-accelerator</code> 属性を使用して、 {{HTMLElement("label")}} 要素内の "N" がキーボードショートカットであると指定しています。ユーザーの画面のプロパティでオプション「Alt キーを押すまでキーボードショートカットを隠す」が有効になっていると、 "N" はユーザーが <kbd>Alt</kbd> キーを押すまで下線が引かれません。 <kbd>Alt</kbd> + <kbd>N</kbd> が押されると、 {{htmlattrxref("accessKey","input")}} 属性の値を "N" に定義した {{HTMLElement("input")}} 要素がフォーカスを受け取ります。</p>
-
-<pre class="brush: html">&lt;!DOCTYPE html&gt;
-
-&lt;html&gt;
- &lt;head&gt;
- &lt;title&gt;Accelerator&lt;/title&gt;
- &lt;/head&gt;
- &lt;body&gt;
- &lt;label for="oName"&gt;&lt;u style="-ms-accelerator: true; accelerator: true"&gt;N&lt;/u&gt;ame: &lt;/label&gt;
- &lt;input type="text"
- id="oName"
- size="25"
- accesskey="N"
- value="Your name here" /&gt;
- &lt;/body&gt;
-&lt;/html&gt;<strong>
-</strong></pre>
-
-<h2 id="Specifications" name="Specifications">仕様書</h2>
-
-<p>どの仕様書でも定義されていません。</p>
-
-<h2 id="Remarks" name="Remarks">注釈</h2>
-
-<p>このプロパティは Windows 2000 以降で対応しています。ユーザーがメニュー項目やコントロールのナビゲーションのインジケーターを <kbd>Alt</kbd> キーが押されるまで隠すことができます。</p>
-
-<p>アクセスキーは、オブジェクトを選択するためのキーボードショートカットとして使われる単一の文字です。ユーザーは <kbd>Alt</kbd> キーを押し、押しながらオブジェクトへ入力フォーカスを移動する文字を押すと、オブジェクトに関連付けられた既定のイベントを呼び出します。</p>
-
-<p>Internet Explorer 8 (IE8) では、 <code>-ms-accelerator</code> 属性は CSS の拡張機能であり、 IE8 標準モードで <code>accelerator</code> の別名として使用することができます。</p>