What are the four ways to introduce css?

王林
Release: 2020-05-15 09:12:31
forward
7241 people have browsed it

What are the four ways to introduce css?

The four ways to introduce CSS are: inline styles, inline styles, link styles and imported styles.

1. Inline style

The most direct and simplest one is to use directly on HTML tags, for example:

<p style="color:#F00; "></p>
Copy after login

Disadvantages: HTML pages are not pure. The file size is large, which is not conducive to spider crawling, and later maintenance is inconvenient.

(Video tutorial recommendation: css video tutorial)

2. Inline style

Inline style is to write CSS code in

, and declare it with , for example:

<style type="text/css">
body,div,a,img,p{margin:0; padding:0;}
</style>
Copy after login

Advantages and disadvantages: The page uses public CSS code, which must be defined on every page. If a website has many pages, each file will become larger and later maintenance will be difficult. If there are few files and not many CSS codes, this style is still very good.

3. Link style

The link style is the most frequently used and the most practical style. You only need to add

; That’s it, as follows:

<link type="text/css" rel="stylesheet" href="style.css" />
Copy after login

Advantages and Disadvantages: It realizes the complete separation of page frame code and performance CSS code, making pre-production and post-maintenance very convenient

4. Import styles ( Not recommended)

Import style is similar to link style. Use @import style to import CSS style sheet. During HTML initialization, it will be imported into HTML or CSS file and become part of the file, similar to the second an inline style.

@import is used in html, as follows:

<style type="text/css">
@import url(style.css);
</style>
Copy after login

@import is used in CSS, as follows:

@import url(style.css);
Copy after login

Recommended tutorial: css quick start

The above is the detailed content of What are the four ways to introduce css?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:jb51.net
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!