I'm trying to reproduce this kind of text, with transparency inside of it and only a border : 
Is this possible to make this in CSS, even with Javascript ?
Using text-stroke:
span {
font-size: 8rem;
color: black;
-webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: black;
}
<span>ICY</span>
You can do it by :
color: transparent;
-webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: white;
Reference: https://css-tricks.com/adding-stroke-to-web-text/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With