<p style="font-size: 10px; color: #FFFFFF;">
使用CSS内联引用表现段落.
</p>
<head>
……
<style type="text/css">
/* 设置本页面p标签中的文字为以下样式*/
p{
font-size: 10px;
color: #FFFFFF;
}
</style>
</head>
<head>
……
<link rel="stylesheet" type="text/css" href="mystyle.css">
<style type="text/css">
@import "mystyle2.css"
……. /*其它CSS定义*/
</style>
</head>p { text-indent:3em; } /*当中的选择符是p*/
h1{ color:red; } /*当中的选择符是h1*/
p.dark-row{ background:#EAEAEA; } /*设置p标签中class属性为dark-row的*/
.note{ font-size:small } /*为note的类可以被用于任何元素*/
<p class="dark-row">第一段</p> <!– 具有类dark-row样式 -->
<span class="dark-row">第二段</span> <!– 没有类dark-row样式 -->
<span class="note">第三段</span> <!– 具有类note样式 -->
<div class="note">第四段</div> <!– 具有类note样式 -->#main{ text-indent:3em; } /*ID名称main前加上一个#号*/
… …
<p id=“main”>文本缩进3em</p> <!– 在html的p标签中指定id属性main -->
p, table{ font-size: 9pt }
效果完全等效于:
p { font-size: 9pt }
table { font-size: 9pt }
a:link {color: #FF0000; text-decoration: none} /* 未访问的链接 */
a:visited {color: #00FF00; text-decoration: none} /* 已访问的链接 */
a:hover {color: #FF00FF; text-decoration: underline} /* 鼠标在链接上 */
a:active {color: #0000FF; text-decoration: underline} /* 激活链接 */
原文:http://www.cnblogs.com/hongxinlaoking/p/4675073.html