Posted On April 4, 2019

Basic CSS: Inherit Styles from the Body Element

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic CSS: Inherit Styles from the Body Element
<style>
body {
background-color: black;
}

</style>

Leave a Reply

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

Related Post

PowerShell: Copying Only Files From a Folder

Function (snippet): function copyOnlyFiles{ param( [Parameter(Mandatory=$true)][string]$sourceFolder, [Parameter(Mandatory=$true)][string]$destinationFolder ) $totalSizeBytes=0; # Get-ChildItem "C:\Temp"|?{!$_.PSIsContainer}|%{robocopy "C:\Temp" "C:\TempCopy" $_}…

PowerShell: Automating Process of Setting Up a New Windows Machine

# Step -2: Creating a New Virtual Machine # Example A: Hyper-V # Compulsory variables…

PowerShell: Obtaining SQL Database Default Paths

# This function returns an array of 3 string values reflecting default Data, Log, and…