diff options
Diffstat (limited to 'files/ja/web/html/element/nobr/index.html')
-rw-r--r-- | files/ja/web/html/element/nobr/index.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/files/ja/web/html/element/nobr/index.html b/files/ja/web/html/element/nobr/index.html new file mode 100644 index 0000000000..4507d79238 --- /dev/null +++ b/files/ja/web/html/element/nobr/index.html @@ -0,0 +1,35 @@ +--- +title: '<nobr>: 無改行文字列要素(廃止)' +slug: Web/HTML/Element/nobr +tags: + - Element + - HTML + - Non-standard + - Obsolete + - Reference + - Web + - nobr +translation_of: Web/HTML/Element/nobr +--- +<div>{{HTMLRef}}{{Non-standard_Header}}{{Obsolete_Header}}</div> + +<p>標準外かつ廃止された HTML の <code><nobr></code> 要素は、その内包する文字列の自動改行を無効化します。行内におさまらない文字列は、領域からはみ出てレンダリングされるか、スクロールバーを伴って表示されます。</p> + +<div class="blockIndicator warning"> +<p>この要素は標準の要素であったことは<em>なく</em>、広く実装されていませんので、使用するべきではありません。代わりに、 CSS プロパティの {{Cssxref("white-space")}} を次のように使用してください。</p> +</div> + +<pre class="brush: html notranslate"><span style="white-space: nowrap;">改行を伴わない長い行</span></pre> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<div>{{Compat("html.elements.nobr")}}</div> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{CSSxRef("white-space")}}</li> + <li>{{CSSxRef("overflow")}}</li> +</ul> |