CSS基礎(chǔ)知識(shí)——外部引用CSS
第一種:使用 link 標(biāo)簽引用CSS
示例:
<head>
<link rel="stylesheet" type="text/css" href="http://www.dreamdu.com/style.css" />
</head>
href -- 指定需要加載的資源(CSS文件)的地址URI
rel -- 指定鏈接類(lèi)型
type -- 包含內(nèi)容的類(lèi)型,一般使用type="text/css"
第二種:使用 @import 引用CSS
示例:
<head>
<style type="text/css">@import url(http://www.dreamdu.com/style.css);</style>
</head>
相對(duì)路徑與絕對(duì)路徑
1、絕對(duì)路徑:文件的完整路徑,主頁(yè)上的文件或目錄在硬盤(pán)上真正的路徑.
示例:http://www.dreamdu.com/html/default.html就是絕對(duì)路徑,/html/default.html也是絕對(duì)路徑,C:winntsystem.sys也是絕對(duì)路徑
2、相對(duì)路徑:相對(duì)于我們查看文檔的路徑.
示例:../default.html或者default.html或者../../default.html都是相對(duì)路徑
點(diǎn)擊加載更多評(píng)論>>