<span id="case1" class="comment>text text</span>
<span id="case2" class="suggestion">suggestion</span>
<span id="case3" class="comment>text text <span class="suggestion">suggestion suggestion</span> text text</span>
I would like span.comment
to have a dotted red underline, span.suggestion
to have a dotted yellow underline and span
with both .comment
and .suggestion
to have a dotted red/yellow underline (one dot red, one dot yellow, one dot red etc.)
What should my CSS look like? Is it possible with text-decoration or border-bottom? Should I use transparent images?