4月2日笔记
1.效果图

代码:
点击查看代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>设置颜色</title>
</head>
<body>
<style>
a{
display:inline;
display:block;
}
.red{
color:red;
}
.blue{
color:blue;
}
.green{
color:green;
}
.black{
color:black;
}
.yellow{
color:yellow;
}
.white{
color:white;
}
.pink{
color:pink;
}
</style>
<a class='red' href="#">空链接</a>
<a class='pink' href='#'>9链接</a>
<a class='blue' href="#">1链接</a>
<a class='yellow' href="#">2链接</a>
<a class='green' href="#">3链接</a>
<a class='white' href="#">4链接</a>
<a class='black' href="#">5链接</a>
</body>
</html>
浙公网安备 33010602011771号