Code Snippet
Style Override Technique
p {
font-size: 24px !important;
}
The !important rule at the end of a value will override any other style declarations of that attribute, including inline styles.
p {
font-size: 24px !important;
}
The !important rule at the end of a value will override any other style declarations of that attribute, including inline styles.
Wow… I learn new thing here… TQ for the snippet..
It’s evil!!!
Code clean and you dont have to do this.