Basic and Advance CSS Examples and Concepts Question:
What Is CSS Cascading?
Answer:
CSS cascading is another rule that allows multiple definitions on the same style property of the same HTML tag instance. The Web browser will use cascading order rules to determine the winning definition. Multiple definitions of the same property could happen because:
► Multiple CSS files can be attached to a single HTML document.
► CSS selectors can overlap on HTML tag instances.
► External CSS definitions can mixed with CSS definitions included inside HTML Tag instances.
► Multiple CSS files can be attached to a single HTML document.
► CSS selectors can overlap on HTML tag instances.
► External CSS definitions can mixed with CSS definitions included inside HTML Tag instances.
Previous Question | Next Question |
What Is Style Property Inheritance in CSS? | What Are the CSS Cascading Order Rules? |