文字のフチドリ

文字のアウトラインの縁取り

p {
 -webkit-text-stroke-width: 1px;
 -webkit-text-stroke-color: #000;
}

まとめて書く場合

p {
 -webkit-text-stroke: 1px #000;
}