css2.0文檔查閱下載 網址:http://soft.hao123.com/soft/appid/9517.html <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content=" ...
css2.0文檔查閱下載 網址:http://soft.hao123.com/soft/appid/9517.html
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>引入外部樣式</title>
<link rel=" stylesheet" href="home.css" type="text/css"/>
</head>
<body class="bg">
<p id="t1">這個是正常。</p>
<p id="t2">這個是粗體。</p>
<p id="t3">這個是粗體 傾斜。</p>
<p class="t4">variant 正常字體</p>
<p class="t5">small-caps (小型的大寫字母字體)</p>
</body>
</html>
css樣式如下:
@charset "utf-8";
/* CSS Document */
.bg{ color:#696}
p#t1{ font-weight:normal}
p#t2{ font-weight:bold}
p#t3{ font-weight: bold; font-style:oblique;}
p.t4{ font-variant:normal;}
p.t5{ font-variant:small-caps;}
效果如下: