aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/-moz-outline-radius-topleft/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/css/-moz-outline-radius-topleft/index.md')
-rw-r--r--files/ja/web/css/-moz-outline-radius-topleft/index.md71
1 files changed, 36 insertions, 35 deletions
diff --git a/files/ja/web/css/-moz-outline-radius-topleft/index.md b/files/ja/web/css/-moz-outline-radius-topleft/index.md
index 0d0d4e9f4e..44bbb49a9a 100644
--- a/files/ja/web/css/-moz-outline-radius-topleft/index.md
+++ b/files/ja/web/css/-moz-outline-radius-topleft/index.md
@@ -3,70 +3,71 @@ title: '-moz-outline-radius-topleft'
slug: Web/CSS/-moz-outline-radius-topleft
tags:
- CSS
- - CSS Property
+ - CSS プロパティ
- NeedsCompatTable
- NeedsContent
- - Non-standard
- - Reference
- - 'recipe:css-property'
+ - 標準外
+ - リファレンス
+ - recipe:css-property
+browser-compat: css.properties.-moz-outline-radius-topleft
translation_of: Web/CSS/-moz-outline-radius-topleft
---
-<div>{{Non-standard_header}}{{CSSRef}}</div>
+{{CSSRef}}{{deprecated_header}}
-<p>Mozilla アプリケーションにおいて、 <strong><code>-moz-outline-radius-topleft</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、要素の輪郭線 ({{cssxref("outline")}}) の左上の角を丸くするために使用することができます。</p>
+Mozilla アプリケーションにおいて、 **`-moz-outline-radius-topleft`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の輪郭線 ({{cssxref("outline")}}) の左上の角を丸くするために使用することができます。
-<h2 id="Syntax" name="Syntax">構文</h2>
+## 構文
-<p><code>-moz-outline-radius-topleft</code> の値は、 {{cssxref("length", "&lt;length&gt;")}} または境界ボックスの対応する大きさに対する<a href="/ja/docs/Web/CSS/percentage">パーセント値</a>のどちらかです。 {{cssxref("calc", "calc()")}} 関数も同様に使用することができます。</p>
+`-moz-outline-radius-topleft` の値は、 {{cssxref("length", "&lt;length&gt;")}} または境界ボックスの対応する大きさに対する[パーセント値](/ja/docs/Web/CSS/percentage)のどちらかです。 {{cssxref("calc()", "calc()")}} 関数も同様に使用することができます。
-<h3 id="Values" name="Values">値</h3>
+### 値
-<dl>
- <dt><code>&lt;length&gt;</code></dt>
- <dd>要素の上端と左端の曲率を定義する円の半径を CSS の {{cssxref("length", "&lt;length&gt;")}} で指定します。</dd>
- <dt><code>&lt;percentage&gt;</code></dt>
- <dd>要素の左上隅の丸めを定義する円の半径で、ボーダーボックスの上辺と左辺の<a href="/ja/docs/Web/CSS/percentage">パーセント値</a>で指定します。</dd>
-</dl>
+- `<length>`
+ - : 要素の上端と左端の曲率を定義する円の半径を CSS の {{cssxref("length", "&lt;length&gt;")}} で指定します。
+- `<percentage>`
+ - : 要素の左上隅の丸めを定義する円の半径で、境界ボックスの上辺と左辺の[パーセント値](/ja/docs/Web/CSS/percentage)で指定します。
-<h2 id="Formal_definition" name="Formal_definition">公式定義</h2>
+## 公式定義
-<p>{{CSSInfo}}</p>
+{{CSSInfo}}
-<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2>
+## 形式文法
{{CSSSyntax}}
-<h2 id="Examples" name="Examples">例</h2>
+<h2 id="Examples">例</h2>
-<p>下記の例は Firefox 以外のブラウザーで見ている場合は、求められる効果が表示されません。</p>
+下記の例は Firefox 以外のブラウザーで見ている場合は、求められる効果が表示されません。
-<h3 id="HTML">HTML</h3>
+### HTML
-<pre class="brush: html notranslate">&lt;p&gt;段落の左上の角を見てください。&lt;/p&gt;</pre>
+```html
+<p>Look at this paragraph's top-left corner.</p>
+```
-<h3 id="CSS">CSS</h3>
+### CSS
-<pre class="brush: css notranslate">p {
+```css
+p {
margin: 5px;
border: solid cyan;
outline: dotted red;
-moz-outline-radius-topleft: 2em;
-}</pre>
+}
+```
-<h3 id="Result" name="Result">結果</h3>
+### 結果
-<p>{{EmbedLiveSample("Examples")}}</p>
+{{EmbedLiveSample("Examples")}}
-<h2 id="Specifications" name="Specifications">仕様書</h2>
+## 仕様書
-<p>標準の一部ではありません。</p>
+どの標準にも含まれていません。
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+## ブラウザーの互換性
-<p>{{Compat("css.properties.-moz-outline-radius-topleft")}}</p>
+{{Compat}}
-<h2 id="See_also" name="See_also">関連情報</h2>
+## 関連情報
-<ul>
- <li>詳しくは {{cssxref("-moz-outline-radius")}} プロパティを参照してください。</li>
-</ul>
+- 詳しくは {{cssxref("-moz-outline-radius")}} プロパティを参照してください。