CSS - text-stroke-width
概要
属性名 | text-stroke-width |
---|---|
値 | <length> |
初期値 | 0 |
サポート | https://caniuse.com/mdn-css_properties_-webkit-text-stroke-width |
説明
テキストの輪郭線の太さを指定します。text-stroke で太さと色をまとめて指定することもできます。IE ではサポートされていません。Chrome, Edge, Safari, Firefox, Opera でサポートされていますが -webkit- をつける必要があります。
値 | 説明 |
---|---|
<length> | 輪郭線の太さを指定します。 |
使用例
CSS
.text-stroke { -webkit-text-stroke-width: 2px; text-stroke-width: 2px; -webkit-text-stroke-color: #33c; text-stroke-color: #33c; color: #ccf; font-family: "Arial Black"; font-size: 36pt; font-weight: bold; }
HTML
<div class="text-stroke"> This is a pen. </div>
表示
This is a pen.
関連項目
text-stroke, text-stroke-colorリンク
- https://developer.mozilla.org/ja/docs/Web/CSS/-webkit-text-stroke
- https://compat.spec.whatwg.org/#the-webkit-text-stroke
Copyright (C) 2023 杜甫々
初版:2023年5月7日、最終更新:2023年5月7日
https://www.tohoho-web.com/css/prop/text-stroke-width.htm