Home Web Front-end HTML Tutorial Summary of color usage in html and css

Summary of color usage in html and css

Jun 09, 2017 am 11:03 AM

In HTML, a color can be represented in the following three ways: color name, RGB value, or HEX value. In actual development, you can use color to do many things. You can also customize the effect of font color to achieve a gradient effect. You can also use css attributes to set various color effects you want for borders, fonts, images, etc. . This article mainly introduces how to use colors in HTML and CSS.

You can first learn free courses related to php Chinese website

1. Learn"Quick Start with HTML/CSS" Color and Classification Chapter Course

Summary of color usage in html and css

2. Watch "Dark Horse Programmer HTML Video Tutorial" Color code Video tutorial

Summary of color usage in html and css

##html, color usage in css

1.

htmlNumber values ​​of various common colors (collection)

In HTML, a color can be represented by color name, RGB value, or HEX value representation. RGB rgb (red, green, blue) three variables are the concentrations of the three primary colors (0~255). For example, rgb (255,0,0) red rgb (0,0,0) black rgb (255,255,255) white HEX hexadecimal represents sixteen Decimal system: 0~255 Conversion to hexadecimal system: 00~FF

2.

HTML5 learning while playing (4) - Changing colors

in Learn while playing with HTML5 (2) - In basic drawing, we mentioned that there are two contextual properties that can be used to set colors:

strokeStyle determines the color of the line you are currently drawing

fillStyle determines the color of the area you currently want to fill.

The color value can be a valid string that conforms to the CSS3 color value standard.

3.

Detailed explanation of CSS3 RGBA color mode usage example code

The RGBA color mode is an extension of the RGB color mode. It is added on the basis of the three primary colors of red, blue and green. Opacity parameter. The syntax is as follows:

rgba(r,g,b,

where r,g,b represents the proportion of the three primary colors of red, blue, and green. The value can be an integer or a percentage. The positive integer value ranges from 0 to 255, and the percentage value ranges from 0.0% to 100.0%. Values ​​outside the range will be cut off to the nearest value limit. Note that not all browsers support using percentage values. The fourth parameter represents opacity, with a value between 0 and 1.

4.

css Gradient Color Omission Mark Embedded Font Text Shadow Detailed Introduction

CSS3 Gradient is divided into linear gradient (linear) and radial gradient (radial). Since different rendering engines have different syntax for implementing gradients, here we only analyze its usage based on the W3C standard syntax of linear gradients. You can refer to relevant information for the rest. W3C syntax has been supported by browsers such as IE10+, Firefox19.0+, Chrome26.0+ and Opera12.1+.

5.

High-Quality Web Design: Examples and Tips No. 6 (Utilizing the Full Potential of Color)

Summertime in Tennessee (Tennessee Summer Tour) is a Vibrant, bright and very warm site. Everything looks designed to promote summer activities. The site uses a wide range of highly saturated colors in varying hues, but each color hits the mark and none is inappropriate for the theme. The color combination of a high-quality design must be closely related to the service or product it is intended to present. Good design doesn't always require going to great lengths to choose some surprising colors. The colors that are most obvious and should be used can actually create better effects. For example, Hell Design (Hell Design), it is simply unreasonable not to use the fiery red color that symbolizes hell.

6.

CSS3 tutorial (3): border-color web page border color

Use the border-radius property of CSS3. If you set the width of the border to X px , then you can use X colors on this border, each color showing a width of 1px. If your border is 10 pixels wide, but only 5 or 6 colors are declared, the last color will be added to the remaining width.

Related Questions and Answers

1. The difference between the effects of opacity and rgba in the browser and the color transparency effects used in Android and iOS programs Very big.

2. Why is CSS3’s hsl color mode rarely used?

【Related recommendations】

1. PHP Chinese website free video tutorial: "php.cn Dugu Jiujian (2)-css video tutorial"

2. PHP Chinese website free tutorial: "Learn HTML+CSS at your fingertips"

The above is the detailed content of Summary of color usage in html and 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 尊渡假赌尊渡假赌尊渡假赌

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)

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...

How to select a child element with the first class name item through CSS? How to select a child element with the first class name item through CSS? Apr 05, 2025 pm 11:24 PM

When the number of elements is not fixed, how to select the first child element of the specified class name through CSS. When processing HTML structure, you often encounter different elements...

Does H5 page production require continuous maintenance? Does H5 page production require continuous maintenance? Apr 05, 2025 pm 11:27 PM

The H5 page needs to be maintained continuously, because of factors such as code vulnerabilities, browser compatibility, performance optimization, security updates and user experience improvements. Effective maintenance methods include establishing a complete testing system, using version control tools, regularly monitoring page performance, collecting user feedback and formulating maintenance plans.

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...

Is H5 page production a front-end development? Is H5 page production a front-end development? Apr 05, 2025 pm 11:42 PM

Yes, H5 page production is an important implementation method for front-end development, involving core technologies such as HTML, CSS and JavaScript. Developers build dynamic and powerful H5 pages by cleverly combining these technologies, such as using the <canvas> tag to draw graphics or using JavaScript to control interaction behavior.

Why does negative margins not take effect in some cases? How to solve this problem? Why does negative margins not take effect in some cases? How to solve this problem? Apr 05, 2025 pm 10:18 PM

Why do negative margins not take effect in some cases? During programming, negative margins in CSS (negative...

How to use react-transition-group to achieve the effect of tightly sliding switching of React components from right to left? How to use react-transition-group to achieve the effect of tightly sliding switching of React components from right to left? Apr 05, 2025 pm 08:03 PM

Regarding the problem of using react-transition-group to achieve component switching transition effect in React. When using React development projects, we often need to implement some streams...

How to efficiently modify the style of nested DIV elements? How to efficiently modify the style of nested DIV elements? Apr 05, 2025 pm 10:45 PM

In-depth discussion on nested DIV style modification methods This article will explain in detail how to effectively modify the DIV element style of nested structures. The challenge we face is how...

See all articles