What is the used of !important? How we can use it?
The !important
css rule is used for overriding the previously assigned CSS declarations.
Also Read: Difference between HTML and HTML5
BY Best Interview Question ON 24 Aug 2019
Example
#sidebar {
font-size: 12px !important;
}