-
Which of the following is not used with text-decoration property?
-
- inline
- line-through
- underline
- overline
- 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.