问答详情
源自:13-1 CSS3的布局 - css布局模型

a标签的问题

<a>asdf</a>标签去掉下划线

提问者:chaucy 2016-05-17 13:38

个回答

  • 水果623
    2016-05-17 13:49:55
    已采纳

    a{
        text-decoration:none;
    }

  • Nemowool
    2016-05-17 14:18:09

    <a style="text-decoration:none">asdf</a>

  • 尚志云
    2016-05-17 14:09:04

    a{ text-decoration:none;

    }