1.标签选择器(用标签名做选择器)
<style type="text/css">
p //格式对p标签起作用
{
样式:
}
</style>
2.Class选择器(.XXXX)
<head>
<style type="text/css">
.main /*定义样式*/
{
height:42px;
100%;
text-align:center;
}
</style>
</head>
<body>
<div id="main"> <!--调用Class样式-->
</div>
</body>
3.ID选择器(#xx)
<head>
<style type="text/css">
#main /*定义样式*/
{
height:42px;
100%;
text-align:center;
}
</style>
</head>
<body>
<div id="main"> <!--调用Class样式-->
</div>
</body>