禁用带下划线的锚标记的内部元素的下划线

时间:2015-01-14 05:29:19

标签: html css

我们可以禁用带下划线的锚标记的内部span元素的下划线。如果有可能请告诉我怎么做?

 <a>hello<span>praveen</span</a>

 <style type="text/css>
     a{
        text-decoration:underline;
     }
     a span{
        text-decoration:none;
     }
 </style>

2 个答案:

答案 0 :(得分:2)

试试这个。

为span style

添加display: inline-block;
a {
    text-decoration:underline;
}

a span {
    text-decoration:none;
    display: inline-block;
}

http://jsfiddle.net/4oqyx6Le/2/

答案 1 :(得分:0)

a&gt;跨度 {  text-decoration:none: }