位置:首頁(yè) > 軟件操作教程 > 編程開(kāi)發(fā) > CSS > 問(wèn)題詳情

CSS基礎(chǔ)知識(shí)——外部引用CSS

提問(wèn)人:劉旭39發(fā)布時(shí)間:2020-10-09

第一種:使用 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ì)路徑


繼續(xù)查找其他問(wèn)題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部