1 CSS基础
全称层叠样式表(Cascading Style Sheets)
1.1 使用外部样式表
<head>
<link href="../Css/style.css" rel="stylesheet" type="text/css">
</head>
需要引用时 直接使用 class="样式名" (或是CssClass="样式名")引用
<a href="Hr/index.htm" target="_blank" class="style2">人力资源分系统</a>
1.2 在页面的head区定义样式表
<head>
<style type="text/css">
<!--
.style1 {
font-size: 12px;
font-weight: bold;
}
.style2 {font-size: 12px}
-->
</style>
</head>
引用方法同一
直接使用 class="样式名" (或是CssClass="样式名")引用
1.3 在body内标签上定义样式表
直接在标签上使用属性 style="样式定义语句"
<td style="border:1px solid #ffffff">
如果样式表定义有冲突,那么越靠近标签的定义优先级越高
一般是在标签上定义的方法优先级高于 在head区定义 在head区定义的方法 高于在 外部样式表定义的样式