【发布时间】:2014-06-11 11:54:41
【问题描述】:
我有两个<a> 标签,我需要像这样给它们加下划线:
(请注意,我不能使用border-bottom: dashed 10px,因为线条很细,但它们之间的空间很大。
HTML:
<a href="" class="t1">text1</a>
<a href="" class="t2">text2</a>
CSS:
.t1 {
color: #8bb09e;
}
.t2 {
color: #ffee90;
}
【问题讨论】: