小编给大家分享一下css中怎么给字体加描边,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
给字体加描边的方法为:1、使用text-shadow属性,语法格式为“text-shadow: 水平阴影 垂直阴影 模糊半径 颜色”;2、使用text-stroke属性,语法格式为“text-stroke: 描边宽度 颜色”。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
想要使用CSS给文字添加描边效果,主要有两种方法:使用text-shadow属性或text-stroke属性。
方法1:使用text-shadow属性
text-shadow属性用于向文本添加字体边框或阴影。
语法:
text-shadow:h-shadowv-shadowblur-radiuscolor|none;
属性值:
h-shadow:它在字体周围设置水平阴影。
v-shadow:它设置字体周围的垂直阴影。
blur-radius:设置字体周围的模糊半径。
color:它设置字体周围的颜色。
none:它没有在字体周围设置任何内容。
示例1:使用text-shadow属性为文本创建阴影
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8"/>
<style>
h2{
text-shadow:005px#5eff79,005px#ff5a5a;
}
h3{
text-shadow:005px#ffd45e,005px#af5aff;
}
</style>
</head>
<body>
<h2>为你明灯三千</h2>
<h3>为你花开满城</h3>
</body>
</html>
效果图:
示例2:
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8"/>
<style>
.demo1{
color:white;
font-size:40px;
text-shadow:-1px1px0#000,1px1px0#000;
}
.demo2{
color:white;
font-size:40px;
text-shadow:-1px1px0#000,1px1px0#000,1px-1px0#000,
-1px-1px0#000;
}
</style>
</head>
<body>
<pclass="demo1">为你明灯三千</p>
<pclass="demo2">为你花开满城</p>
</body>
</html>
效果图:
方法2:使用text-stroke属性
text-stroke属性用于向文本添加描边。此属性可用于更改文字的描边宽度和颜色。使用-webkit-前缀支持此属性。
示例:
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8"/>
<style>
.demo{
color:white;
font-size:40px;
-webkit-text-stroke:1pxrgb(250,190,255);
}
</style>
</head>
<body>
<pclass="demo">为你明灯三千</p>
</body>
</html>
效果图:
看完了这篇文章,相信你对“css中怎么给字体加描边”有了一定的了解,如果想了解更多相关知识,欢迎关注恰卡编程网行业资讯频道,感谢各位的阅读!