Computer Applications
Related Questions
Which is the correct CSS syntax ?
{p:color=black(p}p {color: black;}{p;color:black}p:color=black
What is the correct CSS syntax to change the font name ?
- font-name:
- font:
- font-family:
- fontname:
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;}