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