a{text-decoration: underline} /*链接无下划线none,有为underline*/
a:link {color: #00007ftext-decoration: underline} /*未访问的链接 */
a:visited {color: #65038etext-decoration: underline} /*已访问的链接*/
a:hover{color: #ff0000text-decoration: underline} /*鼠标在链接上 */
a:active {color: #ff0000text-decoration: underline} /*点击激活链接*/
如果一直都是蓝色不变,也可以直接
a{color:blue}
1、新建一个html文件,命名为test.html。
2、在test.html文件内,使用font标签创建三行文字,分别用不同的方法给font字体设置颜色。
3、在test.html文件内,直接在font标签上,通过color属性来设置字体的颜色。例如,设置font字体的颜色为红色。
4、在test.html文件内,设置font标签的class属性为myclass,主要用于下面通过该class来设置css样式。
5、在test.html文件内,设置font标签的id属性为myid,主要用于下面通过该id来设置css样式。
6、在css标签中,设置类名为myclass的样式,例如,设置color属性为蓝色(blue);设置id为myid的样式,例如,设置color属性为粉红色(pink)。
7、在浏览器打开test.html文件,查看实现的效果。