Home » HTML » Html miscellaneous » Question
  1. Which of the following is not used with text-decoration property?
    1. inline
    2. line-through
    3. underline
    4. overline
    5. None of these
Correct Option: A

overline, underline, line-through properties are used to decorate the text.

Syntax: 
h1{text-decoration: line-through; },
h2 {text-decoration: overline ;},
h3{text-decoration: underline;}

it will produce headings h1 with text having line-through, h2 with text having overline and h3 with text having underline.



Your comments will be displayed only after manual approval.