星期五, 5月 25, 2007

CSS樣式的組件

<body>的背景顏色使用External設定

使用Inline設定


使用Internal設定


使用Internal設定

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>未命名頁面</title>
<!--<link href="../StyleSheet.css" rel="stylesheet" type="text/css" />-->
<style type="text/css"> (外部設定最小)
@import url(../StyleSheet.css); h1 {background-color:Green}
</style>
</head>
<body>
<h2>
<body>的背景顏色使用External設定</h2>
<h1 style="background-color: yellow"> 使用Inline設定</h1> (覆蓋優先權最大)
<h1>使用Internal設定</h1> <h1>使用Internal設定</h1> (為第二)
</body>
</html>

沒有留言: