我有以下文字:
我早上吃了酸奶
酸奶很好吃
早上吃酸奶有益健康
我想用虚线下划线“酸奶”这个词。
标签下划线很容易<u>
,但我很困惑如何让特定的单词用点下划线。
一种方法是使用虚线边框。
演示: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;
}