英文:
Making a text blend in the background to hide it
问题
抱歉,如果我的标题不够清晰,但我不知道如何表达我的请求。
我进行了一些研究,但由于不确定应该搜索什么,我没有找到太多信息。
我试图复制以下效果(仅底部部分):
基本上,我正在尝试创建一个DIV,其中文本将基本上去除DIV本身的背景颜色。通过在背景中进行“混合”?
如果我的问题再次不够清晰,我会尽力学习
英文:
sorry if my title is not clear but I do not know how to put words on my request.
I did a bit of research but since Im not sure what I am supposed to look for, i couldn't find much.
Im trying to reproduce the following effect (Bottom part only)
Im basically trying to create a DIV, where the text will basically remove the background color of the DIV itself. . by ??blending?? in the background ?
Sorry if my question is not clear again, im trying to do my best to learn
答案1
得分: 1
你想在你的CSS中使用这个。然后设置背景图片。
这里有一个示例
https://codepen.io/Joseph-Yaconelli/pen/JjeRrJQ
<details>
<summary>英文:</summary>
You want to use this in your CSS. And then set the background image.
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
Here is an example
https://codepen.io/Joseph-Yaconelli/pen/JjeRrJQ
</details>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论