200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > html怎么单独设置两个超链接 怎么在同一个网页设置两种超链接样式

html怎么单独设置两个超链接 怎么在同一个网页设置两种超链接样式

时间:2020-04-08 06:58:58

相关推荐

html怎么单独设置两个超链接 怎么在同一个网页设置两种超链接样式

使用css样式即可,方法如下:

1、在网页头部head/head直接放置以下代码:

style type=text/css

a.topcs:link {

font-size: 12px;

color: #000000;

text-decoration: none;

}

a.topcs:visited {

font-size: 12px;

color: #000000;

text-decoration: none;

}

a.topcs:hover {

font-size: 12px;

color: #FF0000;

text-decoration: none;

}

a.news:link {

font-size: 12px;

color: #000000;

text-decoration: none;

}

a.news:visited {

font-size: 12px;

color: #000000;

text-decoration: none;

}

a.news:hover {

font-size: 12px;

color: #FF0000;

text-decoration: none;

}/style

2、在网页主体建立超链接,分别套用topcs和news样式:

a href=1.html class=news1/aa href=2.html class=topcs1/a

取消

评论

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。