CSS 语法由三部分构成:选择器、属性和值:
selector {property: value}
----------------------------------
1. 外部样式表
<head><link rel="stylesheet" type="text/css" href="mystyle.css" /></head>
外部样式表文件不能包含任何的 html 标签,要用.css 扩展名。
For example:
hr {color: sienna;}
p {margin-left: 20px;}
body {background-image: url("images/back40.gif");}
P.S. 不要在属性值与单位之间留有空格。假如你使用 “margin-left: 20 px” 而不是 “margin-left: 20px” ,它仅在 IE 6 中有效,但是在 Mozilla/Firefox 或 Netscape 中却无法正常工作。.
2. 内部样式表
<head><style type="text/css"> hr {color: sienna;} p {margin-left: 20px;} body {background-image: url("images/back40.gif");}</style></head>
3. 内联样式
<p style="color: sienna; margin-left: 20px">This is a paragraph</p>
3个东西的优先级,那一定是靠近你的就效果越大
浙公网安备 33010602011771号