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 |
. Tell us about the differences between desktop designing and mobile designing.
What is a lazy initialization in singleton?
What are the SDLC phases you have invloved ?
0 Answers Infosys, Tech Mahindra,
What is the difference between factory and strategy design pattern?
Who is your inspiration in this field?
What is viper architecture?
Tell us the kind of features that you add to your design.
What is the difference between factory and builder design pattern?
What are the main usage of the patterns?
how many types of cookies in php
What are the biggest trends in UX Design these days?
If there is a Model class,View class,Controller class then How these are internally related? Which layer objects instantiated in which layer? How they communicates?