| <title>CSS Test: Text Decoration with first-line pseudo element</title> |
| <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-line-pseudo"> |
| text-decoration: underline; |
| text-decoration: overline; |
| text-decoration: line-through; |
| <h2>Test case for First-line text-decoration style</h2> |
| <p> Text-decoration UNDERLINE : Only the first line must have an underline. |
| <div id="div1">Underline Underline Underline Underline<br> Underline Underline Underline Underline<br> Underline Underline Underline Underline </div> |
| <p> Text-decoration OVERLINE : Only the first line must have an overline. |
| <div id="div2">Overline Overline Overline Overline<br> Overline Overline Overline Overline<br> Overline Overline Overline Overline </div> |
| <p> Text-decoration LINE-THROUGH : Only the first line must have a line through it. |
| <div id="div3">Line-Through Line-Through Line-Through Line <br> Line-Through Line-Through Line-Through Line-Through<br> Line-Through Line-Through Line-Through Line-Through </div> |