Computer Applications
Which CSS property controls the text size ?
- font-height
- text-size
- font-size
- text-style
CSS
1 Like
Answer
font-size
Reason — font-size property is used to set the size of a font.
Answered By
3 Likes
Related Questions
How do you make each word in a text start with a capital letter ?
- text-transform:capitalize
- text-transform:uppercase
- You can't do that with CSS
- text:capitalize
What is the correct CSS syntax for making all the
<p>tag's font size 14px ?p {14px}p {font-size: 14px;}p {text-size: 14px;}p {font: 14px;}
How do you insert padding so that it is :
10 pixels at the top 15 pixels at the bottom 5 pixels at the right 10 pixels to the left- padding:10px 15px 5px 10px ;
- padding:15px 5px 10px 10px ;
- padding:10px 5px 10px 15px ;
- padding:10px 5px 15px 10px ;
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}