Answer Posted / swapna
CSS syntax = selector {property: value}
selector is HTML element/tag
Property is attribute
Value is some possible value accepted by property
The property and value are separated by a colon, and
surrounded by curly braces.
Ex:- body {color: black}
If the value is multiple words, put quotes around the
value:
p {font-family: "sans serif"} Applied for <p>?</p>
If you wish to specify more than one property, you must
separate each property with a semicolon.
Ex:- p {text-align: center;
color: black;
font-family: Arial }
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
when performing a functional test on a phone calculator,if pressing on a button does not function what do i do next
Is mvc a software design pattern?
Which design pattern is mvc?
What is the difference between proxy and adapter?
Shall we use abstract classes or interfaces in policy / strategy design pattern?
What is the difference between factory and builder design pattern?
What are the categories in which the design patterns can be divided?
What are the types of participants of the prototype design pattern you will get?
What is the difference between builder and composite?
What is factory method in design pattern?
Can you explain singleton pattern?
What is the difference between architecture and design?
What are the most popular design patterns?
Why do we need singleton pattern?
Why singleton beans are not thread safe?