From 585cf204c175af495fa25c32d509c7ab9b8c8808 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Thu, 11 Nov 2021 10:06:29 +0900 Subject: Mozilla 独自の CSS プロパティを更新 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 2021/11/09 時点の英語版に同期 --- .../web/css/-moz-outline-radius-topright/index.md | 74 +++++++++++----------- 1 file changed, 36 insertions(+), 38 deletions(-) (limited to 'files/ja/web/css/-moz-outline-radius-topright/index.md') diff --git a/files/ja/web/css/-moz-outline-radius-topright/index.md b/files/ja/web/css/-moz-outline-radius-topright/index.md index d1643bd009..39ce8347cd 100644 --- a/files/ja/web/css/-moz-outline-radius-topright/index.md +++ b/files/ja/web/css/-moz-outline-radius-topright/index.md @@ -3,73 +3,71 @@ title: '-moz-outline-radius-topright' slug: Web/CSS/-moz-outline-radius-topright tags: - CSS - - CSS Property + - CSS プロパティ - NeedsCompatTable - NeedsContent - - Non-standard - - Reference - - 'recipe:css-property' + - 標準外 + - リファレンス + - recipe:css-property +browser-compat: css.properties.-moz-outline-radius-topright translation_of: Web/CSS/-moz-outline-radius-topright --- -
{{Non-standard_header}}{{CSSRef}}
+{{CSSRef}}{{deprecated_header}} -

Mozilla アプリケーションにおいて、 -moz-outline-radius-toprightCSS のプロパティで、要素の輪郭線 ({{cssxref("outline")}}) の⇀上の角を丸くするために使用することができます。

+Mozilla アプリケーションにおいて、 **`-moz-outline-radius-topright`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の輪郭線 ({{cssxref("outline")}}) の 上の角を丸くするために使用することができます。 -

構文

+## 構文 -

-moz-outline-radius-topright の値は、 {{cssxref("length", "<length>")}} または境界ボックスの対応する大きさに対するパーセント値のどちらかです。 {{cssxref("calc", "calc()")}} 関数も同様に使用することができます。

+`-moz-outline-radius-topright` の値は、[``](/ja/docs/Web/CSS/length) または境界ボックスの対応する大きさに対する[パーセント値](/ja/docs/Web/CSS/percentage)のどちらかです。 [`calc()`]() 関数も同様に使用することができます。 -

+### 値 -
-
<length>
-
要素の上端と右端の曲率を定義する円の半径を CSS の {{cssxref("length", "<length>")}} で指定します。
-
<percentage>
-
要素の右上隅の丸めを定義する円の半径で、ボーダーボックスの上辺と右辺のパーセント値で指定します。
-
+- `` + - : 要素の上端と右端の曲率を定義する円の半径を CSS の {{cssxref("length", "<length>")}} で指定します。 +- `` + - : 要素の右上隅の丸めを定義する円の半径で、境界ボックスの上辺と右辺の[パーセント値](/ja/docs/Web/CSS/percentage)で指定します。 -

公式定義

+## 公式定義 -

{{CSSInfo}}

+{{CSSInfo}} -

形式文法

+## 形式文法 {{CSSSyntax}} -

+

-

HTML

+### HTML -
<p>段落の右上の角を見てください。</p>
+```html +

Look at this paragraph's top-right corner.

+``` -

CSS

+### CSS -
p {
+```css
+p {
   margin: 5px;
   border: solid cyan;
   outline: dotted red;
   -moz-outline-radius-topright: 2em;
-}
+} +``` -

結果

+### 結果 -

{{EmbedLiveSample("Examples")}}

+{{EmbedLiveSample("Examples")}} -
-

上記の例は Firefox 以外のブラウザーで見ている場合は、求められる効果が表示されません。

-
+> **Note:** 上記の例は Firefox 以外のブラウザーで見ている場合は、求められる効果が表示されません。 -

仕様書

+## 仕様書 -

標準の一部ではありません。

+標準の一部ではありません。 -

ブラウザーの互換性

+## ブラウザーの互換性 +{{Compat}} -

{{Compat("css.properties.-moz-outline-radius-topright")}}

+## 関連情報 -

関連情報

- -
    -
  • 詳しくは {{cssxref("-moz-outline-radius")}} プロパティを参照してください。
  • -
+- 詳しくは {{cssxref("-moz-outline-radius")}} プロパティを参照してください。 -- cgit v1.2.3-54-g00ecf