


Detailed explanation of examples of how html uses four ways to reference css style sheets
Method one: css1.html
<html> <head> <title>内联样式(方法一)</title> </head> <body> <a href=”http://www.baidu.com” style=”color:#FF00FF; font-size:80;”>百度一下</a> </body> </html>
Method two: css2.html
<html> <head> <title>style标签中调用(方法二)</title> <style type=”text/css”> a{color:#FF0000;background:#FFFF00;} </style> </head> <body> <a href=”http://www.baidu.com“>百度二下</a> </body> </html>
Method three: css3.html
<html> <head> <title>link标签中调用(方法三)</title> <link rel=stylesheet type=”text/css” href=”three.css”/> </head> <body> <a href=”http://www.baidu.com“>百度三下</a> </body> </html>
In the same directory as css3.html three.css file: a{color:#FF00FF; background:#0000FF;}
Method four: css4.html
<html> <head> <title>@import指令(方法四)</title> <style type=”text/css”> @import url(“four.css”); </style> </head> <body> <a href=”http://www.baidu.com“>百度四下</a> </body> </html>
Four.css file in the same directory as css4.html: a{color:#0000FF; background:#FF00FF;}
****************************** *************************************************** *******************
In actual applications, inline styles using the style attribute are not recommended, and the first method is not recommended. , this approach weakens the advantage of CSS to centrally control the appearance of the entire document.
The first three methods use link tags and style tags, and have the following restrictions in IE (including IE6, IE7 and IE8 beta1):
◆ There are only The CSS associated with the first 31 link or style tags can be applied; starting from the 32nd, the CSS associated with the tags will be invalid.
◆ A style tag is only valid for the first 31 @import directives; it is ignored starting from the 32nd @import directive.
◆ Only the first 31 @import directives of a css file are effectively applied; starting from the 31st @import directive is ignored.
◆ A CSS file cannot exceed 288kb.
IE's restrictions on CSS will not be encountered in most cases. Even if you encounter the best solution, you should merge the CSS files and response tags manually or through a back-end program. ,
Minimizing the number of http requests is the first principle for optimizing page rendering
The above is the detailed content of Detailed explanation of examples of how html uses four ways to reference css style sheets. For more information, please follow other related articles on the PHP Chinese website!

HTML is not only the skeleton of web pages, but is more widely used in many fields: 1. In web page development, HTML defines the page structure and combines CSS and JavaScript to achieve rich interfaces. 2. In mobile application development, HTML5 supports offline storage and geolocation functions. 3. In emails and newsletters, HTML improves the format and multimedia effects of emails. 4. In game development, HTML5's Canvas API is used to create 2D and 3D games.

TheroottaginanHTMLdocumentis.Itservesasthetop-levelelementthatencapsulatesallothercontent,ensuringproperdocumentstructureandbrowserparsing.

The article explains that HTML tags are syntax markers used to define elements, while elements are complete units including tags and content. They work together to structure webpages.Character count: 159

The article discusses the roles of <head> and <body> tags in HTML, their impact on user experience, and SEO implications. Proper structuring enhances website functionality and search engine optimization.

The article discusses the differences between HTML tags , , , and , focusing on their semantic vs. presentational uses and their impact on SEO and accessibility.

Article discusses specifying character encoding in HTML, focusing on UTF-8. Main issue: ensuring correct display of text, preventing garbled characters, and enhancing SEO and accessibility.

The article discusses various HTML formatting tags used for structuring and styling web content, emphasizing their effects on text appearance and the importance of semantic tags for accessibility and SEO.

The article discusses the differences between HTML's 'id' and 'class' attributes, focusing on their uniqueness, purpose, CSS syntax, and specificity. It explains how their use impacts webpage styling and functionality, and provides best practices for


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
