From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../web/css/-webkit-text-stroke-color/index.html | 110 +++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 files/ja/web/css/-webkit-text-stroke-color/index.html (limited to 'files/ja/web/css/-webkit-text-stroke-color') diff --git a/files/ja/web/css/-webkit-text-stroke-color/index.html b/files/ja/web/css/-webkit-text-stroke-color/index.html new file mode 100644 index 0000000000..629533528e --- /dev/null +++ b/files/ja/web/css/-webkit-text-stroke-color/index.html @@ -0,0 +1,110 @@ +--- +title: '-webkit-text-stroke-color' +slug: Web/CSS/-webkit-text-stroke-color +tags: + - CSS + - CSS プロパティ + - Non-standard + - Reference + - WebKit 拡張 + - 標準外 +translation_of: Web/CSS/-webkit-text-stroke-color +--- +
{{CSSRef}}{{Non-standard_header}}
+ +

-webkit-text-stroke-color は {{Glossary("CSS")}} のプロパティで、テキストの文字の角のを示します。このプロパティが設定されない場合、 {{cssxref("color")}} プロパティの値が使用されます。

+ +
/* <color> 値 */
+-webkit-text-stroke-color: red;
+-webkit-text-stroke-color: #e08ab4;
+-webkit-text-stroke-color: rgb(200, 100, 0);
+
+/* グローバル値 */
+-webkit-text-stroke-color: inherit;
+-webkit-text-stroke-color: initial;
+-webkit-text-stroke-color: unset;
+
+ +

{{cssinfo}}

+ +

構文

+ +

+ +
+
<color>
+
角の色。
+
+ +

形式文法

+ +
{{csssyntax}}
+ +

+ +

HTML コンテンツ

+ +
<p>Text with stroke</p>
+<input type="color" value="#ff0000">
+ +

CSS コンテンツ

+ +
p {
+  margin: 0;
+  font-size: 4em;
+  -webkit-text-stroke-width: 3px;
+  -webkit-text-stroke-color: #ff0000; /* ライブサンプルで変更可能 */
+}
+
+ + + +

{{EmbedLiveSample("Example", "500px", "100px")}}

+ +

仕様書

+ + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('Compat', '#the-webkit-text-stroke-color', '-webkit-text-stroke-color')}}{{Spec2('Compat')}}初回標準化
Safari CSS Reference
+ 文書内の '-webkit-text-stroke-color'
標準外で非公式の文書化初回文書化
+ +

ブラウザーの互換性

+ + + +

{{Compat("css.properties.-webkit-text-stroke-color")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf