Posted On April 4, 2019

Basic CSS: Use RGB values to Color Elements

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic CSS: Use RGB values to Color Elements
<style>
body {
background-color: #F00;
}
</style>

Leave a Reply

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

Related Post

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: Alternative to Test-NetConnection for Legacy Windows

This little snippet is useful as a helper function to quickly determine port connectivity between…

PowerShell: check whether the current user is a member of Domain Admins

# short snippet to check whether the currently login user is a domain admin$CurrentUser =…