代码天地
外贸建站之将超级链接的下划线做成虚线
方法其实很简单,将超级链接下划线禁用,然后设置底部边框为虚线即可,下面把案例代码发布出来供大家参考:
a.texta {
text-decoration:none;
border-bottom:1px dashed #ccc;
color:#c00;
}
a.texta:hover {
border-bottom:1px solid #c00;
color:#666;
}a.textb {
text-decoration:none;
border-bottom:1px dashed #ccc;
color:#069;
}
a.textb:hover {
border-bottom:1px dashed #c00;
color:#000;
}
参考这个方法,大家可以根据需要,将超级链接下划线 变成任何需要的方式。
标签