linkと@importの違いは?what's the diffrence between link and @import ?
What's the diffrence between link and @import ?
link
belongs to the tags of xhtml
, but @import
is provided by css
@import
will wait until the web page is loaded. @import
just can be recognized in ie5
and above, but link
is xhtml
tag, doesn't has the issue of compatibility. link
style is higher than the weight of @import
dom
, we can only use the link
tag when using the js
to control the dom
to change its style. because the @import
is not controllable by the dom. linkと@importの違いは?
link
はXHTML
のラベルに属し、@import
はCSS
によって提供される.link
は同時にロードされ、@import
が参照するCSS
はページがロードされるまで待ってからロードされます.import
はIE 5
以上でしか認識できませんが、link
はXHTML
ラベルで互換性の問題はありません.link
方式のスタイルウェイトは@import
のウェイトより高い.dom
を使用してスタイルを制御する場合の違い.javascript
制御dom
を使用してスタイルを変更する場合は、link
ラベルのみが使用されます.@import
はdom
制御ではないためです.