CSS !important
<!DOCTYPE html> <html> <head> <style> p { color: green !important; } #article p { color: black; } </style> </head> <body> <div id="article"> <p>This paragraph stays green.</p> </div> </body> </html>
<!DOCTYPE html> <html> <head> <style> p { color: green !important; } #article p { color: black; } </style> </head> <body> <div id="article"> <p>This paragraph stays green.</p> </div> </body> </html>