CSS - text-stroke-color
概要
説明
テキストの輪郭線の色を指定します。text-stroke で太さと色をまとめて指定することもできます。IE ではサポートされていません。Chrome, Edge, Safari, Firefox, Opera でサポートされていますが -webkit- をつける必要があります。
使用例
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>
表示
関連項目
text-stroke,
text-stroke-width
リンク
Copyright (C) 2023 杜甫々
初版:2023年5月7日、最終更新:2023年5月7日
https://www.tohoho-web.com/css/prop/text-stroke-color.htm