Html – Not understanding the !important keyword in CSS
I need some help with figuring out how the !important keyword in CSS works. .button { font-size: 20px; color: white; background-color: green; } .div1 { background-color: blue; } #nav.pullright { background-color: red !important; font-size: 30px !important; } .div2 { background-color:…