Google News
logo
CSS - Interview Questions
How we can override CSS?
With the help of !important we can override CSS properties.
 
Example : 
                                                    
.left_side{
    width:30%;
     }

.left_side{
    width:40% !important;
    } 
Advertisement