范例1
body li
{
color:red;
background_color:darkred
}
范例2
#sidebar p
{
font-style: italic;
text-align: right;
margin-top: 0.5em;
}
只有id为siderbar的块中的p会有如上变化(字体。。)
范例3
.center前面加个点表示有这个类的元素
范例4
[title]表示修改带有title属性的元素
或者[title=mayuze]这样
外部样式
<link
rel="stylesheet" type="text/css" href="mystyle.css
" />
css文件中的内容
hr {color: sienna;} p {margin-left: 20px;} body {background-image: url("images/back40.gif");}
内部样式
<style type="text/css">
hr {color: sienna;} p {margin-left: 20px;} body {background-image: url("images/back40.gif");}</style>