超链接如何加下划线 css
我已经在CSS文件中定义超链接无划线,可现在又想让网页中的几个超链接有下划线,其它的没有!!怎么做?代码??能只改这几个吗??让他不受原来的CSS控制...
我已经在CSS文件中定义超链接无划线,可现在又想让网页中的几个超链接有下划线,其它的没有!!
怎么做?代码??能只改这几个吗??让他不受原来的CSS控制 展开
怎么做?代码??能只改这几个吗??让他不受原来的CSS控制 展开
2015-12-08 · 知道合伙人软件行家
yfcp
知道合伙人软件行家
向TA提问 私信TA
知道合伙人软件行家
采纳数:1748
获赞数:5545
有多年网站建设相关工作经验。熟悉ASP、ASP.net、VB、JavaScript、HTML等语言和CSS、Ajax等相关技术。
向TA提问 私信TA
关注
展开全部
CSS超链接加下划线通过设置text-decoration属性来实现。
CSS也可以实现设置一部分超链接有下划线,一部分没有下划线。
<style>
.box1 a{color:#000;text-decoration:none;}
.box2 a{color:#000;text-decoration:underline;}
<style>
<div class="box1"><a href="链接一">这里没有下划线的链接</a></div>
<div class="box2"><a href="链接一">这里有下划线的链接</a></div>
text-decoration 属性规定添加到文本的修饰。
语法:
text-decoration:<' text-decoration-line '> || <' text-decoration-style '> || <' text-decoration-color '>
默认值:看每个独立属性
适用于:所有元素
继承性:无
动画性:看每个独立属性
计算值:看每个独立属性
相关属性:<' text-decoration-skip '> || <' text-underline-position '>
取值:
<' text-decoration-line '>:
指定文本装饰的种类。相当于CSS2.1的 <' text-decoration '> 属性,可取值:none | underline | overline | line-through | blink
<' text-decoration-style '>:
指定文本装饰的样式。
<' text-decoration-color '>:
指定文本装饰的颜色。
CSS也可以实现设置一部分超链接有下划线,一部分没有下划线。
<style>
.box1 a{color:#000;text-decoration:none;}
.box2 a{color:#000;text-decoration:underline;}
<style>
<div class="box1"><a href="链接一">这里没有下划线的链接</a></div>
<div class="box2"><a href="链接一">这里有下划线的链接</a></div>
text-decoration 属性规定添加到文本的修饰。
语法:
text-decoration:<' text-decoration-line '> || <' text-decoration-style '> || <' text-decoration-color '>
默认值:看每个独立属性
适用于:所有元素
继承性:无
动画性:看每个独立属性
计算值:看每个独立属性
相关属性:<' text-decoration-skip '> || <' text-underline-position '>
取值:
<' text-decoration-line '>:
指定文本装饰的种类。相当于CSS2.1的 <' text-decoration '> 属性,可取值:none | underline | overline | line-through | blink
<' text-decoration-style '>:
指定文本装饰的样式。
<' text-decoration-color '>:
指定文本装饰的颜色。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
css部分:
.noline {
text-decoration: underline;
}
或者:
.noline {
a:hover:text-decoration: underline;
}
html部分:
<a class="noline" href="http://ceshi.com">链接</a>
a标签的几种状态和顺序:
a:link
描述页面上的超级链接的文本的颜色、状态等
a:active
超级链接激活时,也就是当鼠标左键按下时,超级链接的文本的颜色、状态等
a:visited 已经看过的超级链接的文本的颜色、状态等
a:hover
当鼠标移动到超级链接上时,超级链接的文本的颜色、状态等
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
证明你还是懂一点CSS,可以没有弄懂优先级,在你需要的连接添加行内样式,如:
<a href="ddrb/090630.asp" target="_blank" style="text-decoration:underline;">30</a>
<a href="ddrb/090630.asp" target="_blank" style="text-decoration:underline;">30</a>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询