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
What are the main usage of the patterns?
What is the difference between architecture and design?
Is oop a design pattern?
Is singleton scope thread safe?
What are structural design patterns?
What are the most commonly used design patterns?
What is onion architecture?
What is the singleton design pattern?
What is a behavioral design pattern?
what is the lazy design pattern?
What are the categories in which the design patterns can be divided?
What is the difference between adapter and facade?
What is the gang of four design pattern?
Give me example of observer design pattern?
What is clean architecture?