Table of Contents
这是 heading 1
Home Web Front-end CSS Tutorial How to change font color in css

How to change font color in css

Oct 11, 2021 pm 04:44 PM
css font color

In CSS, you can use the color attribute to modify the font color. The function of this attribute is to set the color of the text. You only need to add "color: color value;" to the element containing the font text. Color values ​​can be defined using color names, hexadecimal values, RGB or RGBA values, HSL or HSLA values.

How to change font color in css

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

If you want to modify the color of the font in css, you can use the color attribute.

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<style type="text/css">
			body {
				color: red
			}
			
			h1 {
				color: #00ff00
			}
			
			p.ex {
				color: rgb(0, 0, 255)
			}
		</style>
	</head>

	<body>
		<h1 id="这是-nbsp-heading-nbsp">这是 heading 1</h1>
		<p>这是一段普通的段落。请注意,该段落的文本是红色的。在 body 选择器中定义了本页面中的默认文本颜色。</p>
		<p class="ex">该段落定义了 class="ex"。该段落中的文本是蓝色的。</p>
	</body>

</html>
Copy after login

Rendering:

How to change font color in css

Description: The

color attribute can be used to set the text Color; this property sets the foreground color of an element (in HTML representation, the color of the element's text).

Grammar:

color : 颜色值;
Copy after login

How to write css color values:

  • 1. Use color names

Although there are currently about 184 named colors, there are only 16 color names that are truly supported by various browsers and recommended as CSS specifications, as shown in the table below.

Table 1: Color names recommended by CSS specifications

/*名 称	颜 色	名 称	颜 色	名 称	颜 色
black	纯黑	silver	浅灰	navy	深蓝
blue	浅蓝	green	深绿	lime	浅绿
teal	靛青	aqua	天蓝	maroon	深红
red	大红	purple	深紫	fuchsia	品红
olive	褐黄	yellow	明黄	gray	深灰
white	壳白*/
Copy after login

It is not recommended to use color names in web pages, especially large-scale use, to avoid that some color names are not parsed by the browser, or are different Differences in how browsers interpret colors.

  • 2. Hexadecimal color

Hexadecimal symbols #RRGGBB and #RGB (such as #ff0000). "#" followed by 6 or 3 hexadecimal characters (0-9, A-F).

This is the most commonly used color selection method, for example:

#f03
#F03
#ff0033
#FF0033
Copy after login
  • 3, RGB, red-green-blue (RGB)

Specifies that the color value is the color of rgb code, the function format is rgb(R,G,B), and the value can be an integer or percentage from 0-255.

rgb(255,0,51)
rgb(255, 0, 51)
rgb(100%,0%,20%)
rgb(100%, 0%, 20%)
Copy after login

Extensions: RGBA, Red-Green-Blue-Alpha (RGBa)

RGBA extends the RGB color mode to include an alpha channel, allowing the transparency of a color to be set. a represents transparency: 0=transparent; 1=opaque.

rgba(255,0,0,0.1)    /* 10% 不透明 */  
rgba(255,0,0,0.4)    /* 40% 不透明 */  
rgba(255,0,0,0.7)    /* 70% 不透明 */  
rgba(255,0,0,  1)    /* 不透明,即红色 */
Copy after login
  • 4. HSL, hue-saturation-lightness (Hue-saturation-lightness)

Hue (Hue) represents the color wheel ( That is, an angle representing a circle of a rainbow).
Saturation and brightness are expressed as percentages.
100% is full saturation, while 0% is a grayscale.
100% lightness is white, 0% lightness is black, and 50% lightness is "normal".

hsl(120,100%,25%)    /* 深绿色 */  
hsl(120,100%,50%)    /* 绿色 */       
hsl(120,100%,75%)    /* 浅绿色 */
Copy after login

Extension: HSLA, Hue-Saturation-Lightness-Alpha (HSLa)

HSLa extends from the HSL color mode and includes the alpha channel, which can specify the transparency of a color. a represents transparency: 0=transparent; 1=opaque.

hsla(240,100%,50%,0.05)   /* 5% 不透明 */   
hsla(240,100%,50%, 0.4)   /* 40% 不透明 */  
hsla(240,100%,50%, 0.7)   /* 70% 不透明 */  
hsla(240,100%,50%,   1)   /* 完全不透明 */
Copy after login
  • 5. transparent

Special color value, indicating transparent color. Can be used directly as color.

For example: color:transparent Set the font color to transparent

<style type="text/css">
    body{background:hsl(270,100%,50%)}
    p{
        font-size:50px;
        font-family:"黑体";
        /*浏览器私有属性*/
        -webkit-text-fill-color:transparent;/*设置文本透明*/
        /*使用rgba(0,0,0,0);也可以实现全透明模式*/
        -webkit-text-stroke:2px yellow;/*将文本设置透明,再设置个边框后就实现镂空字了*/
        /*W3C标准属性*/
        /*text-fill-color:transparent;*/
        /*text-stroke:2px yellow;*/
    
    }
</style>
<body>
    <p>2012年过去了,最忙的是元芳,你怎么看?</p>
</body>
Copy after login

Note: When using color to set the color of the text font, you need to use a reasonable background color and text color matching, which can improve Readability of text.

(Learning video sharing: css video tutorial)

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

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the encoded fonts used in the picture? How to apply this font style in a project? What are the encoded fonts used in the picture? How to apply this font style in a project? Apr 05, 2025 pm 05:06 PM

Introduction and use of encoded fonts In programming and web design, choosing the right font can greatly improve the readability and aesthetics of the code. recent,...

How to customize the hover effect of merge rows in el-table? How to customize the hover effect of merge rows in el-table? Apr 05, 2025 pm 06:54 PM

How to customize the hover effect of merge rows in el-table? Using Element...

How to correctly display the locally installed 'Jingnan Mai Round Body' on the web page? How to correctly display the locally installed 'Jingnan Mai Round Body' on the web page? Apr 05, 2025 pm 10:33 PM

Using locally installed font files in web pages Recently, I downloaded a free font from the internet and successfully installed it into my system. Now...

What is the <figure> element in CSS for? What is the
element in CSS for? Apr 05, 2025 pm 04:51 PM

What are the elements in CSS for? During the learning and using CSS, you may encounter some less common HTML elements, such as &lt...

How to use locally installed 'Jingnanmai Round' on a web page without loading the font file? How to use locally installed 'Jingnanmai Round' on a web page without loading the font file? Apr 05, 2025 pm 04:54 PM

How to use locally installed font files on web pages In web page development, sometimes we will encounter the situation where we need to use specific fonts installed on our computer...

How to adjust hover style and logic of merged rows in el-table in Element UI? How to adjust hover style and logic of merged rows in el-table in Element UI? Apr 05, 2025 pm 07:45 PM

How to adjust the hover style and logic of merged rows in el-table? Using Element...

How to compatible with multi-line overflow omission on mobile terminal? How to compatible with multi-line overflow omission on mobile terminal? Apr 05, 2025 pm 10:36 PM

Compatibility issues of multi-row overflow on mobile terminal omitted on different devices When developing mobile applications using Vue 2.0, you often encounter the need to overflow text...

How to increase the height of the input while keeping the text at the bottom? How to increase the height of the input while keeping the text at the bottom? Apr 05, 2025 pm 05:09 PM

How to increase the height of the input while keeping the text at the bottom? In web development, sometimes we need to set an input box with a larger height...

See all articles