Home  >  Article  >  Web Front-end  >  How to set the color of the first row of the table in css

How to set the color of the first row of the table in css

藏色散人
藏色散人Original
2021-11-10 11:44:105586browse

How to set the color of the first row of the table in css: 1. Create a new html file; 2. Use the table tag to create a table with three rows and two columns; 3. In the css tag, set the style of the table through the id ;4. Select the first row of the table through the id and ":first-child" selector and set the background color.

How to set the color of the first row of the table in css

The operating environment of this article: windows7 system, HTML5&&CSS3 version, DELL G3 computer

#How to set the color of the first row of the table with css?

Create a new html file, named test.html, to explain how to add a background color to the first row of the table using css.

How to set the color of the first row of the table in css

In the test.html file, use the table tag to create a table with three rows and two columns.

How to set the color of the first row of the table in css

In the test.html file, set the id of the table tag to mytest.

How to set the color of the first row of the table in css

In the css tag, set the style of the table through the id, defining its width as 320px and height as 120px.

How to set the color of the first row of the table in css

In the css tag, select the first row of the table through the id and ":first-child" selector, and use the background attribute to set its color to blue and the text color is white.

How to set the color of the first row of the table in css

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

How to set the color of the first row of the table in css

Video recommendation: "css video tutorial"

The above is the detailed content of How to set the color of the first row of the table in css. 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