How to add strokes to fonts in css

醉折花枝作酒筹
Release: 2023-01-06 11:15:51
Original
18862 people have browsed it

The method to add a stroke to the font is: 1. Use the text-shadow attribute, the syntax format is "text-shadow: horizontal shadow vertical shadow blur radius color"; 2. Use the text-stroke attribute, the syntax format is "text-stroke: stroke width color".

How to add strokes to fonts in css

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

If you want to use CSS to add a stroke effect to text, there are two main methods: use the text-shadow attribute or the text-stroke attribute.

Method 1: Use the text-shadow property

The text-shadow property is used to add a font border or shadow to the text.

Syntax:

text-shadow: h-shadow v-shadow blur-radius color|none;
Copy after login

Property values:

  • h-shadow: It sets a horizontal shadow around the font.

  • v-shadow: It sets the vertical shadow around the font.

  • blur-radius: Set the blur radius around the font.

  • color: It sets the color around the font.

  • none: It sets nothing around the font.

Example 1: Use the text-shadow property to create a shadow for text

nbsp;html>   

为你明灯三千

为你花开满城

Copy after login

Rendering:

How to add strokes to fonts in css

Example 2:

nbsp;html>   

为你明灯三千

为你花开满城

Copy after login

Rendering:

How to add strokes to fonts in css

Method 2: Use the text-stroke attribute

text-stroke Property is used to add a stroke to text. This property can be used to change the stroke width and color of text. This property is supported using the -webkit- prefix.

Example:

nbsp;html>   

为你明灯三千

Copy after login

Rendering:

How to add strokes to fonts in css

Recommended learning:css video tutorial

The above is the detailed content of How to add strokes to fonts in css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:php.cn
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!