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 categories in which the design patterns can be divided?
Using any system, product, or service your organization provides, identify the human system roles for the product.
What is the builder pattern?
Explain what are 5 common problems in the software development process?
Why should we not use singleton pattern?
What are the main types of concurrency design patterns?
Can we inherit singleton class?
What is mvp design pattern?
What is the factory pattern in the design pattern?
What is the difference between proxy and adapter?
Is mvc is a design pattern?
What is single tone design pattern in java?
What non-visual coding tools are available for web design?
What is singleton and factory pattern?
What is a lazy initialization in singleton?