Home  >  Article  >  Web Front-end  >  What are the css child selectors?

What are the css child selectors?

青灯夜游
青灯夜游Original
2020-11-13 16:46:135542browse

There are 5 css child selectors, namely: ":first-child" selector, ":only-child" selector, ":nth-child(n)" selector, ":nth" -last-child(n)" selector, ":last-child" selector.

What are the css child selectors?

【Recommended tutorial: CSS video tutorial

css child selector

:first-child, selects the first child element belonging to its parent element. Example: p:first-child, selects every

element that is the first child element of the parent element.

:only-child, matches every element that is the only child element of its parent element. Example: p:only-child selects each

element that is the only child element of its parent element.

:nth-child(n) , matches the Nth child element belonging to its parent element, regardless of the element type. Example: p:nth-child(2), selects every

element that is the second child of its parent element.

:nth-last-child(n), matches every element that is the Nth child element of its element, regardless of the type of element, counting from the last child element. Example: p:nth-last-child(2), same as above, counting from the last child element.

:last-child, matches every element that is the last child element of its parent element. Example: p:last-child, selects each

element that is the last child element of its parent element.

For more programming-related knowledge, please visit: Introduction to Programming! !

The above is the detailed content of What are the css child selectors?. 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