Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Web front-end interview guide (11): what are the ways to import styles?

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

Style import mode

Link

Import

Mode of use

The use of link

[css] view plain copy

The use of import

[css] view plain copy

@ import "index.css"

Differences

In addition to referencing style files, link can also reference resource files such as pictures, while import only references style files

Compatibility is different, and there is no compatibility problem in link. Import is supported above IE5, which is added by css2.1.

Other stylesheet files can be imported using import in stylesheet files, while link cannot

When link references CSS, it loads at the same time as the page loads; @ import requires the page page to be loaded after it is fully loaded.

Link supports using Javascript to control DOM to change styles; @ import does not.

Add item

There are many ways to write import.

@ import 'style.css' / / Windows IE4/ NS4, Mac OS X IE5, Macintosh IE4/IE5/NS4 does not recognize

@ import "style.css" / / Windows IE4/NS4, Macintosh IE4/NS4 does not recognize

@ import url (style.css) / / Windows NS4, Macintosh NS4 does not recognize

@ import url ('style.css') / / Windows NS4, Mac OS X IE5, Macintosh IE4/IE5/NS4 does not recognize

@ import url ("style.css") / / Windows NS4, Macintosh NS4 does not recognize

@ import url (index.css) is recommended

-

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report