1

我有以下文字:

  1. 我早上吃了酸奶

  2. 酸奶很好吃

  3. 早上吃酸奶有益健康

我想用虚线下划线“酸奶”这个词。

标签下划线很容易<u>,但我很困惑如何让特定的单词用点下划线。

4

1 回答 1

2

一种方法是使用虚线边框

演示:http: //jsfiddle.net/HhRT5/

<ol>
    <li>I ate <span class="yogurt">yogurt</span> in the morning</li>
    <li><span class="yogurt">yogurt</span> was very nice</li>
    <li>eating <span class="yogurt">yogurt</span> in the morning is healthy</li>
</ol>

.yogurt {
    border-bottom: 1px dotted #aaa;
}
于 2013-04-06T04:22:39.357 回答