Give the syntax of css?
Answer / 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 |
. How do you manage timelines?
How did you design your unit tests?What about integration tests?
Which design pattern is mostly used in net?
3. Discuss the concept of system transition strategy
What is singleton and factory pattern?
If a client does not like a design what will your approach be?
What is Software development life cycle....??
How might prototyping be used as part of the SDLC?
Is oop a design pattern?
What is the difference between factory and strategy design pattern?
In what cases are synchronous architectures more appropriate than asynchronous architectures?
Shall we use abstract classes or interfaces in policy / strategy design pattern?