Introduction to CSS3 and new selectors_html/css_WEB-ITnose
1: Basic introduction
1: css version
css1: Defines the basic attributes of the web page: fonts, colors, fillers, basic selectors, etc.css2: Added advanced features: floating, positioning, advanced selectors (child selectors, adjacent selectors, universal selectors)
css3: Follow modular development. Release time is not a point in time, but a time period. (2002-present)
2: New features of css3
(1) CSS selector
(2) New color system and transparency settings
(3) Implementation of multi-column layout
(4) Multiple background image effect
(5) Text shadow effect
(6) Open web font type
(7) Rounded corners
(8) Border background image
(9) Box shadow
(10) Media query
Two: New selector
Css3 new selector
(1)css3 attribute selector
(2)css3 structure pseudo-class selector
(3)css3 UI element status pseudo-class selector
(4) Other new selectors
1: Brother selector
China’s top ten outstanding figures
①Other people’s children< ;/p>
②Other people’s father
③Other people’s mother
④Other people’s husband
⑤Other people’s wife
⑥Other people’s father-in-law
⑦Other people’s Mother-in-law
⑧Other people’s company
⑨Other people’s receipt
⑩Other people Home employees
Note: (1) Do not select the first p tag, only select its brother
(2) Only Select the following sibling tags and cannot select forward.
2: Structure pseudo-class selector
(1) child series
first-child positive number
last-child reciprocal
nth-child(n);
nth-child(3n 1) Choose one of every two
nth-child(even); nth-child(2n) even number
nth-child( odd) ;nth-child(2n 1) odd number
nth-last-child(n) reciprocal
Others are the same as above
only -child is the only child element, the only child
Example: li:only-child{color:#f00;font-size:30px}
Example:
< ;style>
p:first-child{color:#f00;}
< h4>I am the first child element of my father. Unfortunately, I am not a p tag, so I cannot be selected
I am the second child element of my father
< ;p>I am the 3rd child element of my father
I am the 4th child element of my father
I am the 5th child of my father Element
I am the 1st child element of the father, and I am the p tag, so I was selected
I am the 2nd child element of the father
I am the 3rd child element of the father
I am the 4th child element of my father
I am the 5th child element of my father
< /div>
(2) of-type series
fist-of-type
last-of-type
nth-of-type(n)
nth -last-of-type(n)
only-of-type
is similar to the child series, but only pays attention to similar tags and only counts similar tags.
(3)empty
(4)root
html:root{background:green}
is equivalent to
html{background:green}
The root of html is always the html element, the entire html page. It has no real meaning.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit
