search
HomeWeb Front-endHTML TutorialCSS Cascading Style Sheets_html/css_WEB-ITnose

Generally speaking, all styles have the following rules (the fourth one has the highest priority)

1. Browser default

Browser default

2 , External style sheet

External style sheet

3. Internal style sheet (inside the

tag)

Inline style sheet (inside the

tag) 4. Inline style (inside an HTML element)

Inline style (within an HTML element)

So the style written in the HTML element has the highest Priority (written within an HTML element), which overrides other forms of style.


The syntax of CSS consists of three parts: a selector, a property and a value, for example: selector{property:value}

The selector is The HTML element/tag you wish to define. Each attribute can have a value. The attribute and value are separated by a colon and enclosed in curly brackets. body{color:black}

If the value is multiple words, Then use double quotes -p{font-family:"sans serif"}

Note: If you want to specify multiple attributes, you must separate each attribute with a semicolon, as in the following example Demonstrates how to define live red text exercises

-p {text-align:center;color:red}


in order to make style definition more possible For readability, you can describe the attributes in separate lines like this

p{

text-align:center;

color:black;

font-family: arial

}

can also combine selectors. Separate each selector with a comma. The example below combines all heading elements and changes their color to green

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


Using selector classes you can define different styles for the same type of HTML elements. For example, you want to have two different styles of paragraphs in your document: one is right-aligned, and the other is centered. This shows you how to do this with styles

p.right{text-align:right}

p.center{text-align:center}

You must use the class attribute in your HTML document (to show the effect)

This paragraph will be right-aligned.

This paragraph will be center-aligned.

Note: Each HTML element can only have one class attribute


You can also omit the tag name and define it directly, so that you can use it in all HTML elements. The following example can center the text of all elements with class="center" in all HTML:

.center{text-align:center}

H1 and P elements in the following code All have class="center". This means that both elements will follow the rules of the selector "center"

This heading will be center-aligned

This paragraph will also be center-aligned.


Do not use classes whose names begin with numbers. Doesn't work properly in Mozilla/Firefox.


(id selector)

Using id selector you can define the same style for different HTML elements

Style below The rule matches any element with an id attribute value of "green"

#green{color:green}

The above rule will match h1 and p elements

Some text

Some text

The following style The rule will match any p element with an id attribute value of "green"

p#green{color:green}

The above rule does not match the h1 element (that is, it does not Will produce style effect)

Some text


Same as class, the name of id Do not use numbers at the beginning, otherwise it will not work properly in Mozilla/Firefox.


How to insert a style sheet?

When the browser reads the style sheet, it formats the document according to it (the style sheet). There are three ways to insert a style sheet

1. External Style Sheet

2. Internal Style Sheet

3. Inline style (Inline Styles)


External style sheets:

Using external style sheets is an ideal way to apply styles to multiple web pages. This way you only need to change one file to change the appearance of the entire website. Use the tag to link each page to the style sheet. The tag is used in the head area

The browser will read the style definition information from the mystyle.css file and format the document according to it


External style sheets can be written using any text editor. The file should not contain any html tags. And save it as a file with the suffix .css. The following is the content of a style sheet file

hr{color:sienna}

p{margin-left:20px}

body{background-image:url(images/back40.gif)}


Inline style Table

An inline style sheet should be used when there are separate documents with special styles. Use the

hr {color:red}

p{margin-left:20px}

body{background-image:url("images/back40.gif")}


Inline style

Using inline style loses the advantage of the style sheet and changes the content confused with form. Generally, this method is used when individual elements need to change the style.

is used to add inline styles using the style attribute on the relevant tags. Style properties can contain any CSS property. The example will show how to add left spacing to a paragraph and change the color to red

This is a paragraph


Multiple Style Sheets

If some properties are set to different styles by the same selector, the values ​​will be inherited from the more specific style ( Concrete)

For example, an external stylesheet has an h3 selector attribute like this

h3{color:red;text-align:left;font-size:8pt}

At the same time, there is an inline style sheet with such h3 selector attribute

h3{text-align:right;font-size:20pt}

If the page has inline If the style sheet is connected to an external style sheet at the same time, the h3 attributes will become

color:red;text-align:right;font-size:20pt

The color is inherited from the external Style sheets and text alignment and text size are replaced by embedded style sheets.


Copyright Statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission.

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
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 <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

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

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.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

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.

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

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.

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.

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 Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

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 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Atom editor mac version download

Atom editor mac version download

The most popular open source editor