Home > Web Front-end > CSS Tutorial > css set text outer glow effect

css set text outer glow effect

王林
Release: 2020-12-08 16:39:41
forward
4296 people have browsed it

css set text outer glow effect

Implementation code:

(Recommended tutorial: CSS tutorial)

<!DOCTYPE html>
<html>
<head>
<style>
h1
{
text-shadow: .2rem 0rem .5rem red,-.2rem 0rem .5rem red,0rem .2rem .5rem red,0rem -.2rem .5rem red;
}
</style>
</head>
<body>
 
<h1>文本阴影效果!</h1>
 
</body>
</html>
Copy after login

Implementation effect:

css set text outer glow effect

The above is the detailed content of css set text outer glow effect. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template