Home  >  Article  >  Web Front-end  >  How to modify the style of the nth element in css

How to modify the style of the nth element in css

WBOY
WBOYOriginal
2021-11-23 11:39:354032browse

In CSS, you can use the ":nth-child" selector to select the nth element and modify the style of the element. This selector can match the nth child element that belongs to its parent element, regardless of the element. The type, the syntax is ":nth-child(n){modify content;}".

How to modify the style of the nth element in css

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

How to modify the style of the nth element in css

You can use in css: nth-child(n) selector matching belongs to its parent The Nth child of the element, regardless of the element's type. Then modify it, n can be a number, keyword or formula.

The example is as follows:






这是标题

第一个段落。

第二个段落。

第三个段落。

第四个段落。

注释:Internet Explorer 不支持 :nth-child() 选择器。

Output result:

How to modify the style of the nth element in css

##The above example is to modify the background color of the second element , let’s take a look again:

Open our editor. Create a set of sequences as an example. first-child is the first element. last-child is the last element. nth-child(3) is the third element. Even numbers can also be specified cleverly.

How to modify the style of the nth element in css

How to modify the style of the nth element in css

Recommended related video tutorials:

jQuery video tutorial

The above is the detailed content of How to modify the style of the nth element 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