| 1. |
What Is Css Rule Ruleset? |
|
Answer» There are two types of CSS rules: RULESET and at-rule. Ruleset identifies SELECTOR orselectors and declares STYLE which is to be attached to that selector or SELECTORS. For example P {text-indent: 10pt} is a CSS rule. CSS rulesets CONSIST of two parts:selector, e.g. P and declaration, e.g. {text-indent: 10pt}. There are two types of CSS rules: ruleset and at-rule. Ruleset identifies selector orselectors and declares style which is to be attached to that selector or selectors. For example P {text-indent: 10pt} is a CSS rule. CSS rulesets consist of two parts:selector, e.g. P and declaration, e.g. {text-indent: 10pt}. |
|