search
HomeWeb Front-endHTML TutorialThree ways to place CSS in HTML and CSS selectors_html/css_WEB-ITnose

(1) There are generally three ways to use CSS styles in HTML:

1 Inline reference

2 Internal reference

3 External reference.

The first type: inline reference (also called inline reference)

is to apply CSS styles directly to HTML tags.

 

Use CSS inline references to represent paragraphs.

 < ;/p>

Features: Inline styles are more flexible than other methods, but they need to be confused with the displayed content. Inline styles will lose some of the advantages of style sheets.

The second type: internal reference (also called inline)

Use the style tag to directly load the content of the CSS file into the HTML document in the

tag.

 

 …

 ​​The text in the p tag is in the following style*/ >

  

 

 Features: Suitable for use when an HTML document has a unique style.

The third type: external reference

CSS external reference uses external CSS files. General browsers have caching functions, so users do not need to Download this CSS file every time.

External references are efficient and save bandwidth compared to internal references and inline references.

External references are recommended by W3C

There are two ways to implement external references:

(1) Use the link tag to reference CSS

(2) Use @import to import CSS

 

 …

                                         /css">

@import "mystyle2.css"

.... /*Other CSS definitions*/

/head>

Note: If you use several different style sheets on the same selector, this attribute value will overlap several style sheets and encounter conflicts. The final definition will prevail.

(2) CSS selector has six types of selectors:

1 HTML selector

2 types of selectors

3 ID selector

4 Association selector

5 Combination selector

6 Pseudo element selector

1 HTML selector: It is an HTML tag, used to change the style of a specified tag. Any HTML element can be a CSS selector.

Syntax: HTML tag name {attribute: value}

 p { text-indent:3em; } /*The selector is p*/

h1{ color:red; } /*The selector is h1*/

2. Class selector: Match the element whose class attribute value is classname of element E in the document

Syntax: tag name. class name {attribute: value} or . class name {attribute: value}

  类选择符名称的定义方式是,"."符号,英文"dot",后加类名称classname

  类选择符的定义需要有.符号(.符号标明是类选择符),但是HTML文档中的标签的class属性名不能出现.符号,见下面示例:

  p.dark-row{ background:#EAEAEA; }    /*设置p标签中class属性为dark-row的*/

  .note{ font-size:small }            /*为note的类可以被用于任何元素*/

  

第一段

             

  第二段    

  第三段           

  
第四段
 > Syntax: ID name {attribute: value}

The ID selector name is defined as the # symbol, English "pound", followed by the ID name idname

ID selector The definition needs to have the # symbol (the # symbol indicates the ID selector), but the # symbol cannot appear in the id attribute name of the tag in the HTML document, see the example below

The special thing about the id attribute is that a document Only one element can use an ID selector (just the opposite of the class attribute). The id attribute can be used to uniquely identify an element.

Text indentation 3em

4 association selectors: also It is called the inclusion selector. It can be used to define a style sheet for a certain element inclusion relationship. Element 1 contains element 2. This method is only defined for element 2 in element 1. There is no definition for individual element 1 or element 2.

Syntax: selector 1 selector 2...{attribute: value}

table a{font-size:12px}

Links within the table The style has been changed so that the text size is 12 pixels, while the text for links outside the table remains at the default size.

5 Combination selectors: also called selector groups, you can combine selectors with the same attributes and values ​​to write, and separate the selectors with commas, which can reduce the style Repeat definition.

Syntax: selector 1, selector 2,.,..{attribute: value}

h1, h2, h3, h4, h5, h6 { color: green }

p, table{ font-size: 9pt }

The effect is completely equivalent to:

p { font-size: 9pt }

table { font-size: 9pt }

6 Pseudo-element selectors refer to a way of defining different states of the same HTML element. For example, the normal state, access state, selected state, and the state when the cursor moves to the hyperlink text of the tag can be defined using a pseudo-element selector.

Syntax: tag: pseudo-element {attribute: value;}

a:link {color: #FF0000; text-decoration: none} /* Unvisited link*/

a:visited {color: #00FF00; text-decoration: none} /* Visited links*/

a:hover {color: #FF00FF; text-decoration: underline} /* Mouse over link*/

a:active {color: #0000FF; text-decoration: underline} /* Activate link*/

Tip: a:hover must be placed It is only valid after a:link and a:visited.

Tip: a:active must be placed after a:hover to be effective.

If there are any mistakes, please correct me.

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
Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

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

How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

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

What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

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

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

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

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

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

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)