≪ Today I learned. RSS購読
公開日
タグ
CSS
著者
ダーシノ(@bc_rikko)

text-strokeとpaint-orderで縁取り文字や袋文字を表現する

text-strokepaint-orderを使うことで、いままで文字が潰れてしまっていた縁取り文字や袋文字がCSSだけで表現できるようになった。

<h1>HELLO WORLD</h1>
h1 {
  color: white;
  -webkit-text-stroke: 4px black;

  paint-order: stroke;
}

デモ

paint-order: normal

paint-order: stroke

paint-order: markers