I found this solution: Outline effect to text Which is great, but is it posible to make the text transparent and only the outline to draw? This happens with box-shadow, for example, as even if the box doesn't have a background, you won't see the shadow "under" the box. But with text, if it is transparent, you se the whole shadow of the type. Is it posible to get only the outline with transparent text?
EDIT: The problem with this is to have a nice fallback for browsers that don't support for example -webkit-text-outline, because they wouldn't draw the outline and they would make the text invisible...
You can achieve the transparent text with text-stroke with an inline svg.
You can use the <text>
element (more info on MDN) set the fill
property to none
or transparent
to make the text transparent and use the stroke
porperty to make the text outline. stroke-width
and stroke-color
can define the texte stroke thickness and color
Here is an example: transparent text with a white stroke and a background image showing through the text:
body {
background: url('https://farm9.staticflickr.com/8760/17195790401_94fcf60556_c.jpg');
background-size: cover;
}
svg{width:100%;}
<svg viewbox="0 0 10 2">
<text x="5" y="1" text-anchor="middle" font-size="1" fill="none" stroke-width=".015" stroke="#fff" font-family="sans-serif">Text stroke</text>
</svg>
Well, using CSS3 this is possible, but only with certain browser prefixes. Combining color: transparent
will generate what you're looking for.
For example:
span {
color: transparent;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: black;
}
It's worth noting though, that use of text-stroke-*
is still limited. Please refer to Can I Use.
If you want a nice fallback, you can use a media query:
@media screen and (-webkit-min-device-pixel-ratio:0) {
span {
color: #000;
}
}
I finally found a responsive answer to the webkit stroke problem:
span{
color: white;
text-shadow: 1px 1px black, -1px -1px black;
}
@supports(-webkit-text-stroke: 1px black){
span{
color: transparent;
-webkit-text-stroke: 1px black;
text-shadow: none;
}
}
This works as @supports has been implemented in most webkit browsers like chrome and opera for some time now.
来源:https://stackoverflow.com/questions/30050556/how-to-make-a-text-stroke-with-transparent-text