color: transparent & text-strokeの要素を選択すると、
選択の薄グレーは表示されるものの、文字が消えてしまいました・・・
これを解消したい
SCSS
color: transparent;
-webkit-text-stroke: 1px black;
↓
color: transparent;
-webkit-text-stroke: 1px black;
&::selection {
color: black;
background: #aad2ff;
}
デモ
See the Pen color: transparent & text-stroke ::selection Chrome bug by ituki_b (@ituki_b) on CodePen.