css怎么给文字加背景
程序员文章站
2022-03-10 23:20:51
...
方法:1、用“color: transparent”设置文字透明;2、用“background-image:url("图片地址")”给文字加背景图片;3、用“background-clip: text;”将图片和文字融合,实现文字背景效果。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
今天我们我们来看看使用CSS怎么给文本添加背景图,让文字变得生动好看!在我们想要创建一个较大的文本标题,但不想使用普通又枯燥的颜色来修饰时,非常有用!
我们先来看看效果图:
下面我们来研究一下是怎么实现这个效果的:
1、首先是HTML部分,定义两个标题
<body> <h1>拼多多培训</h1> <h3>拼多多培训</h3> </body>
2、然后开始定义css
样式来进行修饰:
body { display: flex; align-items: center; justify-content: center; flex-direction: column; width: 100%; text-align: center; min-height: 100vh; font-size: 100px; font-family:Arial, Helvetica, sans-serif; }
3、最后就是给文字添加背景图片:
将文字原本的颜色设置为transparent
透明,然后利用background-image
属性给文字加背景图片
h1 { color: transparent; background-image: url("001.jpg"); } h3{ color: transparent; background-image: url("002"); }
发现效果是这样的,不如人意。这是因为缺少了一个关键属性background-clip
。background-clip
属性是一个CSS3
新属性,要添加前缀来兼容其他浏览器
h1 { color: transparent; background-image: url("001.jpg"); background-clip: text; -webkit-background-clip: text; } h3{ color: transparent; background-image: url("002.jpg"); background-clip: text; -webkit-background-clip: text; }
ok,大功告成!下面附上完整代码:
<html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> body { display: flex; align-items: center; justify-content: center; flex-direction: column; width: 100%; text-align: center; min-height: 100vh; font-size: 100px; font-family:Arial, Helvetica, sans-serif; } h1 { color: transparent; background-image: url("001.jpg"); background-clip: text; -webkit-background-clip: text; } h3{ color: transparent; background-image: url("002.jpg"); background-clip: text; -webkit-background-clip: text; } </style> </head> <body> <h1>拼多多培训</h1> <h3>拼多多培训</h3> </body> </html>
推荐学习:CSS视频教程
以上就是css怎么给文字加背景的详细内容,更多请关注其它相关文章!
下一篇: photoshop里面怎么撤销
推荐阅读
-
怎么实现背景色从中间往两边渐变?_html/css_WEB-ITnose
-
WPS文字怎么设置页面如分隔符、背景、页面边框等等
-
这里的大括号怎么看都没发现图片,又没发现文字{},到底怎么弄出来的呢?_html/css_WEB-ITnose
-
给现有的图片加文字水印php代码
-
ps文字怎么做一半模糊效果? ps给文字部分位置加高斯模糊的技巧
-
CSS实现背景透明,文字不透明(各浏览器兼容)_html/css_WEB-ITnose
-
随时给自己贴的图片加文字的php代码
-
不知大家遇到过这种问题么,一个层宽度设为100%,并设置背景图片,在浏览器中浏览,缩小窗口到滚动条出现,然后拖动滚动条到右侧,右侧的区域变成空白,怎么解决?_html/css_WEB-ITnose
-
CSS3里怎么实现提示文字的弹窗效果
-
给自己一个微笑 作文 随时给自己贴的图片加文字的php水印