|
<html>
<head>
<style>
.center{text-align:center}
#left{text-align:left}
h1.center{text-align:center;color:red}
h3#right{text-align:right}
a:link{color:green}
a:hover{color:FF00FF}
a:active{color:990033}
a:visited{color:FF0000}
</style>
</head>
<body>
<p class="center" >类选择器 </p>
<h1 class="center" >标签和类选择器</h1>
<h2 id="left" >id选择</h2>
<h3 id="right">id和类选择</h3>
<h4 id="right">h4</h4>
<br/><a href="##">超链注意颜色变化颜色</a>
</body>
</html> |
|