0
Outline in css
Is it possible to add an outline to letters / text in CSS?
7 Respuestas
+ 3
Use -webkit-text-stroke: 1px <color>;
with color: transparent;
https://code.sololearn.com/W5FYihk9443T/?ref=app
+ 2
Try
-webkit-text-stroke: 2px black;
0
Thank you very much!
text-stroke
I read that browsers do not see with good eyes and should be avoided. Why? (google translate)
0
Works. But I only asked in principle. (google translate)
0
try text-shadow
0
Thank you all!