1.

How we can override CSS?

Answer»

With the HELP of !IMPORTANT we can OVERRIDE CSS properties.

Example

.SIDEBAR{
width:30%;
}

.sidebar{
width:40% !important;
}



Discussion

No Comment Found