Home>Article>Web Front-end> How to set color gradient in html

How to set color gradient in html

藏色散人
藏色散人 Original
2021-04-19 14:51:00 41111browse

htmlHow to set color gradient: first create an HTML sample file; then use the div tag to create a module; then set the div style through "id(colorchange)" in the css tag; finally use linear-gradient Just set the background color gradient effect of the div using the attribute.

How to set color gradient in html

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

Create a new HTML file, named test.html, to explain how to achieve color gradients in CSS.

How to set color gradient in html

In the test.html file, use the div tag to create a module to set the gradient color.

How to set color gradient in html

In the test.html file, set the id attribute of the div tag to colorchange, and mainly use this id to set the css style of the div.

How to set color gradient in html

In the test.html file, write thetag of the page The css style will be written inside this tag.

[Recommended learning:HTML video tutorial]

How to set color gradient in html

In the css tag, set the style of the div through id (colorchange) , set the width of the div to 300px and the height to 200px.

How to set color gradient in html

In the css tag, set the background color of the div through linear-gradient in the background-image attribute from left to right (to right) ,gradient from red to yellow.

How to set color gradient in html

Open the test.html file in the browser to check the effect.

How to set color gradient in html

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

Statement:
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
Previous article:How to set height in html Next article:How to set height in html