Summary of four ways to introduce CSS (sharing)

Summary of four ways to introduce CSS (sharing)

1. Inline reference: used directly on the label, but the maintenance cost is high

style='font-size:16px;color:#000000'

2. External link reference: CSS code is separated from HTML code, which is convenient for code reuse

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

The content of the style.css file is as follows:

.font{color:blue;font-size:12px;}

3. Internal reference: The page is clearer, but cannot be used by other pages

<style type='text/css'>
    .font{color:blue;font-size:12px;}
</style>

4. External import: You can import multiple style sheets in one HTML file. Similar to external link reference

Add this to the head tag in the HTML file

<style type='text/css'>
    @import url('./style/style.css');
</style>

The above summary (sharing) of four ways to introduce CSS is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

<<:  Detailed explanation of Json format

>>:  Implementation of waterfall layout in uni-app project

Recommend

How to create an index on a join table in MySQL

This article introduces how to create an index on...

Method of realizing automated deployment based on Docker+Jenkins

Use Code Cloud to build a Git code storage wareho...

Complete MySQL Learning Notes

Table of contents MyISAM and InnoDB Reasons for p...

Complete step record of vue encapsulation TabBar component

Table of contents Implementation ideas: Step 1: C...

CSS specification BEM CSS and OOCSS sample code detailed explanation

Preface During project development, due to differ...

Web Design Tutorial (6): Keep your passion for design

<br />Previous article: Web Design Tutorial ...

js implements a simple countdown

This article example shares the specific code of ...

Detailed explanation of Vue's ref attribute

Summarize This article ends here. I hope it can b...

MySql quick insert tens of millions of large data examples

In the field of data analysis, database is our go...

Implementation of whack-a-mole game in JavaScript

This article shares the specific code for JavaScr...

Difference and principle analysis of Nginx forward and reverse proxy

1. The difference between forward proxy and rever...