Posted On April 4, 2019

Basic CSS: Override Styles in Subsequent CSS

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic CSS: Override Styles in Subsequent CSS
<style>
body {
background-color: black;
font-family: monospace;
color: green;
}
.pink-text {
color: pink;
}
</style>
<h1 class="pink-text">Hello World!</h1>

Leave a Reply

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

Related Post

PowerShell Dealing with Proxy

# Direct Access - no proxy netsh winhttp reset proxy   # Set proxy $proxyString…

Script to remove files older than X days

------------- Batch file ------------------------@echo off:: set folder pathset dump_path="E:\Shared\APP01\LOGFILES\RatingWebService2\Rating Comments\Production":: set min age of files…

PowerShell: Download and Apply Windows Patch KB

The following snippet assumes that a Windows machine has access to download Microsoft patches directly…