1.

How to apply CSS to all elements?

Answer»

To apply CSS to all elements, USE the CSS * Selector.

Example:

* {
   BACKGROUND-COLOR: red;
}

This SELECTS all the elements and changes their background color to blue.



Discussion

No Comment Found