Posted On April 4, 2019

Basic CSS: Use Hex Code for Specific Colors

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic CSS: Use Hex Code for Specific Colors
<style>
body {
background-color: black;
}
</style>

Leave a Reply

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

Related Post

How To Upgrade NextCloud 22.1.1 to 22.2.0 When Deployed with Kubernetes & Helm

Step 1: Navigate to nextcloud > html > edit version.php <?php $OC_Version = array(22,1,1,2); $OC_VersionString…

How To Add or Remove a Path in Windows Environmental Paths

There are 2 functions to Add and Remove, at your convenience: # addEnvironmentalPath.ps1 $pathToAdd='C:\Scripts' $pathToRemove='C:\Scripts'…

Some Common Gitlab Commands

To ignore SSL Cert errors: git config --global http.sslVerify "false"   # checkout changed file…