Computer Applications
Which property is used to increase and decrease the text size ?
- font-width
- font-size
- text-width
- text-size
CSS
3 Likes
Answer
font-size
Reason — font-size property is used to increase and decrease the text size in the following way:
h3 {font-size : 8pt; }
Answered By
2 Likes
Related Questions
How do you display hyperlinks without an underline?
- a {decoration:no underline}
- a {text-decoration:none}
- a {hyperlink:no underline}
- a {text-decoration:no underline}
Which property is used to change the background color ?
- background-color
- bgcolor
- bg-color
- color
What would this CSS rule do ?
p { color:red; }- Make the background of all paragraphs red.
- Make the fonts of all paragraphs red.
- Make all text boxes red.
- Make the border of all paragraphs red.
What would this CSS rule do ?
h2 { font-size:2em; }- Make fonts in a specific h2 tag double in size.
- Make fonts in all h2 tags double in size.
- Make fonts in all h2 tags double in size and italic.
- Make all fonts that are size 2, empty.