Posted On April 4, 2019

Basic CSS: Override All Other Styles by using Important

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic CSS: Override All Other Styles by using Important
<style>
body {
background-color: black;
font-family: monospace;
color: green;
}
#orange-text {
color: orange;
}
.pink-text {
color: pink;
}
.blue-text {
color: blue;
}
</style>
<h1 id="orange-text" class="pink-text blue-text" style="color: white">Hello World!</h1>

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Set Default UTF-8 encoding for New Notepad Documents When Saving File

Part 1: Set Default UTF-8 encoding for New Notepad Documents When Saving File for Legacy…

WordPress NextGen Gallery Plugin Error

Error Message: Failed to load plugin url: /bitnami/wordpress/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/attach_to_post/static/ngg_attach_to_post_tinymce_plugin.js?ver=3.17 Resolution: Although the root cause hasn't been…

PowerShell: Notify Each User Before Password Expires

# This script email users basing on their password expiration dates # User input variables…