How to use nth-of-type in CSS

不言
Release: 2018-12-07 15:17:30
Original
7550 people have browsed it

nth-of-type is an attribute that gets some applicable items and applies styles. It is one of the How to use nth-of-type in CSS selectors added from How to use nth-of-type in CSS 3. The :nth-of-type(n) selector matches specific elements that belong to the parent element. For each element of the Nth sub-element of the type, in this article we will explain the usage of nth-of-type in detail.

How to use nth-of-type in How to use nth-of-type in CSS

How to use nth-of-type?

Let’s first look at the specific description of nth-of-type. Note that “:” (colon) is appended before “nth-of-type (2n)”.

li:nth-of-type(2n){
 }
Copy after login

The "n" in () indicates the number, and "2n" indicates the multiple of 2

You can also specify other numbers, such as "3n 1 ”, “odd”, “even”, etc.

Let’s look at a specific example

The code is as follows

HTML code

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>How to use nth-of-type in CSS nth-of-type</title>
    <link rel="stylesheet" type="text/How to use nth-of-type in How to use nth-of-type in CSS" href="sample.How to use nth-of-type in How to use nth-of-type in CSS">
  </head>
  <body>
    <ul>
      <li>1</li>
      <li>2</li>
      <li>3</li>
      <li>4</li>
      <li>5</li>
      <li>6</li>
      <li>7</li>
    </ul>
  </body>
</html>
Copy after login

How to use nth-of-type in CSS code

sample.How to use nth-of-type in How to use nth-of-type in CSS

li:nth-of-type(2n){
  color: #5bc0de;
}

li{
  margin: 10px;
  font-size: 120%;
}
Copy after login

The following effect will be displayed on the page. You will see that the colors that are multiples of 2 have become blue.

How to use nth-of-type in CSS

This article ends here. For more related exciting content, you can go to How to use nth-of-type in CSS Video Tutorial## on the php Chinese website. #和How to use nth-of-type in CSS3 video tutorial column for further study! ! !

The above is the detailed content of How to use nth-of-type in CSS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template