在DW中怎么定义不同的文字连接颜色?
RT。网页导航部分链接用白色。正文部分用另一种颜色。可是在页面属性中定义,一下控制的是整个页面。请高手指点。...
RT。网页导航部分链接用白色。正文部分 用另一种颜色。可是在页面属性中定义,一下控制的是整个页面。请高手指点。
展开
3个回答
2013-10-31
展开全部
比如:
<div id="head">头部</div>
<div id="main">正文</div>
样式可以写成:
<style type="text/css">
#head a:link,#head a:visited {
color:#ff0;
}
#head a:hover {
color:f00;
}
#main a:link,#main a:visited {
color:#000;
}
#main a:hover {
color:#ff0;
}
</style>
这样就行了
<div id="head">头部</div>
<div id="main">正文</div>
样式可以写成:
<style type="text/css">
#head a:link,#head a:visited {
color:#ff0;
}
#head a:hover {
color:f00;
}
#main a:link,#main a:visited {
color:#000;
}
#main a:hover {
color:#ff0;
}
</style>
这样就行了
2013-10-31
展开全部
设置不同的样式
a:link {
color: #666666;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #999999;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
---------------------------------------
.ttt a:link {
color: #ffffff;
text-decoration: none;
}
.ttt a:visited {
text-decoration: none;
color: #ffffff;
}
.ttt a:hover {
text-decoration: none;
}
.ttt a:active {
text-decoration: none;
}
应用: <a href="" class="ttt">111</a> 这个是白色 <a href="">111</a> 这个是灰色
a:link {
color: #666666;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #999999;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
---------------------------------------
.ttt a:link {
color: #ffffff;
text-decoration: none;
}
.ttt a:visited {
text-decoration: none;
color: #ffffff;
}
.ttt a:hover {
text-decoration: none;
}
.ttt a:active {
text-decoration: none;
}
应用: <a href="" class="ttt">111</a> 这个是白色 <a href="">111</a> 这个是灰色
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-31
展开全部
<a style="color="red"">红色的</a>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询