CSS3 selector: Nth-of-type

Source: Internet
Author: User

Encountered a selector: Nth-of-type

<!DOCTYPE HTML><HTML>    <Head>    <Metahttp-equiv= "Content-type"content= "text/html; charset=utf-8" />    <styletype= "Text/css">P:nth-of-type (odd)//odd{background:#cff;        }P:nth-of-type (even)//even{background:#fcc;        }    </style>    </Head>    <Body>        <H1>This is the title</H1>        <P>The first paragraph.</P>        <Div>This is a div.</Div>        <Div>This is a div.</Div>        <P>A second paragraph.</P>        <P>A third paragraph.</P>        <span>This is a span.</span>        <P>A fourth paragraph.</P>        <P>A fifth paragraph.</P>    </Body></HTML>

Odd even another way

P:nth-of-type (2n+1);

P:nth-of-type (2n);

The difference from Nth-child

P:nth-child (2): The selector matches the 2nd child element belonging to its parent element, regardless of the type of the element. Before adding p, you need to satisfy two conditions, the second element of the parent element, and the P element.

P:nth-of-type (2): The selector matches each element of the 2nd child element of a particular type (p) that belongs to the parent element.

CSS3 selector: Nth-of-type

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.