What is cascade?


Cascade is a method of defining the weight (importance) of individual styling rules thus allowing conflicting rules to be sorted out should such rules apply to the same selector.

Declarations with increased weight take precedence over declaration with normal weight:

P {color: white ! important}Â /* increased weight */
P (color: black} /* normal weight */



Explore posts in the same categories: CSS Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • What is ON DELETE CASCADE ?
  • When ON DELETE CASCADE is specified ORACLE maintains referential integrity by automatically removing dependent foreignÂ...
  • What is cascade delete
  • A deletion that triggers another deletion. A cascade delete can be specified for an entity bean that has container-managed persistence....
  • What is the cascade rule and how does it relate to deletions made with a subselect ?
  • The cascade rule will not allow deletions based on a subselect that references the same table from which the deletions...
  • What is the use of CASCADE CONSTRAINTS?
  • When this clause is used with the DROP command, a parent table can be dropped even when a child table...
  • What is the use of CASCADE CONSTRAINTS?
  • When this clause is used with the DROP command, a parent table can be dropped even when a child table...
  • What is the self-referencing constraint ?
  • The self-referencing constraint limits in a single table the changes to a primary key that the related foreign key defines. ...
  • What is a mutating and constraining table?
  • "Mutating" means "changing". A mutating table is a table that is currently being modified by an update, delete, or insert...
  • 31 MySQL Questions for LAMP Developers
  • What is DDL, DML and DCL? - If you look at the large variety of SQL commands, they can be...

    Comment:

    You must be logged in to post a comment.