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

Error: 502 Gateway Error

Explanation: 502 Gateway Error generally means connection problems with an upstream proxy. In this instance,…

Basic JavaScript: Manipulate Arrays With unshift()

// Setupvar myArray = [["John", 23], ["dog", 3]];myArray.shift();// Only change code below this line.myArray.unshift( ["Paul",35]);

Java Virtual Machine Optimal Memory Tuning

Overview: There are five available garbage collectors (GC) for Java Virtual Machines (JVM). Here are…