diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-02 11:10:49 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-12 01:46:21 +0900 |
commit | a3643ff82b78257981873b27753f00a26796adb3 (patch) | |
tree | 1af083f3595f9efedec04a9ffda2c4b3a0c81fbb /files/ja/web/css/mask-border-width/index.md | |
parent | ea197b97a285a7f4fb51f252ac25ad8a5d6482c8 (diff) | |
download | translated-content-a3643ff82b78257981873b27753f00a26796adb3.tar.gz translated-content-a3643ff82b78257981873b27753f00a26796adb3.tar.bz2 translated-content-a3643ff82b78257981873b27753f00a26796adb3.zip |
Web/CSS/mask-border とその関連プロパティを更新
- 2021/08/13 時点の英語版に同期
- mask-border, mask-mode, mask_outset, mask_slice については新規翻訳
Diffstat (limited to 'files/ja/web/css/mask-border-width/index.md')
-rw-r--r-- | files/ja/web/css/mask-border-width/index.md | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/files/ja/web/css/mask-border-width/index.md b/files/ja/web/css/mask-border-width/index.md index 8f83e99c13..221a8615e3 100644 --- a/files/ja/web/css/mask-border-width/index.md +++ b/files/ja/web/css/mask-border-width/index.md @@ -5,7 +5,7 @@ tags: - CSS - CSS Masking - CSS プロパティ - - Experimental + - 実験的 - NeedsCompatTable - NeedsExample - Reference @@ -23,13 +23,13 @@ translation_of: Web/CSS/mask-border-width /* キーワード値 */ mask-border-width: auto; -/* <length> 値 */ +/* <length> 値 */ mask-border-width: 1rem; -/* <percentage> 値 */ +/* <percentage> 値 */ mask-border-width: 25%; -/* <number> 値 */ +/* <number> 値 */ mask-border-width: 3; /* 上下 | 左右 */ @@ -74,31 +74,31 @@ mask-border-width: unset; ## 例 -### Basic usage +### 基本的な使用 -This property doesn't appear to be supported anywhere yet. When it eventually starts to be supported, it will serve to define the width of the border mask — setting this to a different value to [`mask-border-slice`](/ja/docs/Web/CSS/mask-border-slice) will cause the slices to be scaled to fit the border mask. +このプロパティは、まだどこでも対応されていないようです。このプロパティが対応されるようになれば、境界マスクの幅を定義することになります。このプロパティを [`mask-border-slice`](/ja/docs/Web/CSS/mask-border-slice) と異なる値に設定すると、スライスは境界マスクに合わせて拡大縮小されます。 ```css mask-border-width: 30 fill; ``` -Chromium-based browsers support an outdated version of this property — `mask-box-image-width` — with a prefix: +Chromium ベースのブラウザーは、このプロパティの古い版 — `mask-box-image-width` — に接頭辞つきで対応しています。 ```css -webkit-mask-box-image-width: 20px; ``` -> **Note:** The [`mask-border`](/ja/docs/Web/CSS/mask-border) page features a working example (using the out-of-date prefixed border mask properties supported in Chromium), so you can get an idea of the effect. +> **Note:** [`mask-border`](/ja/docs/Web/CSS/mask-border) ページでは動作する例を (Chromium で対応している古い接頭辞つきの境界マスクプロパティを使用して) 挙げていますので、効果について分かるでしょう。 -## Specifications +## 仕様書 {{Specifications}} -## Browser compatibility +## ブラウザーの互換性 {{Compat}} -## See also +## 関連情報 - {{cssxref("mask-border")}} - {{cssxref("mask-border-mode")}} |