Chrome
Cobalt
Monokai
Dreamweaver
Vibrant Ink
Answer
Submit
<!DOCTYPE html> <html lang="en"> <head> <title>Learn CSS</title> </head> <body> <p class = "first">This text is overline.</p> <p class = "second">This text is line-through.</p> <p class = "third">This text is underline.</p> </body> </html>
.first { text-decoration: overline; } .second { text-decoration: line-through; } .third { text-decoration: underline; }
//Javascript