(1)在每個HTML標籤上面都有一個屬性 style,把css和HTML結合在一起
<div style=
"background-color:red;color:blue;"
>我是一隻小小鳥</div>
(2)使用HTML的一個標籤實現,<style>標籤:寫在head裡面
<style type=
"text/css"
>
css程式碼;
</style>
<style type=
"text/css"
>
div {
background-color
:
red
;
color
:
gray
;
}
</style>
(3)在style標籤裡面 使用語句(在某些瀏覽器下不起作用)
@import url(css檔案路徑);
- 第一步:建立一個css檔案
<style type=
"text/css"
>
@import
url
(div.css);
</style>
(4)使用頭標籤link,引入外部css檔案
- 第一步:建立一個css檔案
- <link rel=
"stylesheet"
type=
"text/css"
href=
"div.css"
/>
*** 第三種結合方式缺點:在某些瀏覽器下不起作用,一般使用第四種方式
*** 優先順序(一般情況)
由上到下,由外到內,優先順序由低到高
*** 後載入的優先順序高
*** 格式 選擇器名稱 {屬性名:屬性值; 屬性名:屬性值; ......}
完整程式碼:
<html>
<head>
<title>World</title>
<style type=
"text/css"
>
div {
background-color
:
gray
;
color
:
white
;
}
</style>
</head>
<body>
<div style=
"background-color:red;color:blue;"
>我是一隻小小鳥
</div>
<div>願有歲月可回首,且以深情共白頭!</div>
</body>
</html>
<html>
<head>
<title>World</title>
<style type=
"text/css"
>
@import
url
(div.css);
</style>
</head>
<body>
<div>願有歲月可回首,且以深情共白頭!</div>
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
>
<title>world</title>
<link rel=
"stylesheet"
type=
"text/css"
href=
"div.css"
/>
</head>
<body>
<div>願有歲月可回首,且以深情共白頭!</div>
</body>
</html>
總結
以上所述是小編給大家介紹的css和html的四種結合方式,希望對大家有所幫助