Four ways to add CSS style sheets to web pages, you can choose your favorite method according to your needs.
1. Use the STYLE attribute: Add the STYLE attribute directly to individual component tags.
The advantage of this usage is that the style can be flexibly applied to each label. But the disadvantage is that there is no "unity" in the entire document.
2. Use the STYLE tag: Write the style rules in thetag.
Copy code
The code is as follows:
For example:
Usually write the entirestructure in thesection of the web page. The advantage of this usage lies in the uniformity of the entire document. As long as there is a declared component, the style rule will be applied. The disadvantage is the lack of flexibility in individual components.
3. Use the LINK tag: Write the style rules in the .css style file, and then introduce it with thetag.
Suppose we save the style rules as an example.css file, we only need to add
to the web page ;
The style specified in the style file can be applied. Usually the LINK tag is written in the
Copy code
The code is as follows:
For example:
It should be noted that the semicolon at the end of the line is absolutely essential! In this way,
@import url(http://yourweb/ example.css);
can also be added to other styles to call.
The above is the detailed content of Four ways to add CSS style sheets to web pages. For more information, please follow other related articles on the PHP Chinese website!