CSS Cheat sheet: Unleashing the Power of Styles and Layouts - Your Ultimate Quick Reference Guide

Hey Viewer, I'm Kyle Robins, Devops / Full-stack Engineer based in Nairobi Kenya. Am passionate about Web development & Content Creation.
Search for a command to run...

Hey Viewer, I'm Kyle Robins, Devops / Full-stack Engineer based in Nairobi Kenya. Am passionate about Web development & Content Creation.
No comments yet. Be the first to comment.
HNG Internship Stage 0

Kubernetes has become the go-to solution for container orchestration, offering robust capabilities to automate the deployment, scaling, and management of containerized applications. In this blog post, we will walk through the process of deploying a s...

Definition - Kubernetes is an opensource orchestration engine for automating deployments,scaling, and managing containerized applications it was created by Google but its now actively maintained by Cloud Native Computing Foundation. Kubernetes facili...

Understanding Basics and Must-Know Methods

A Beginner's Guide to for, while, and do-while in JavaScript

color: #RRGGBB;
font: italic small-caps bold 16px/1.5 "Helvetica", sans-serif;
font-family: "Times New Roman", serif;
font-size: 18px;
font-weight: bold;
text-align: center;
text-decoration: underline;
text-decoration: line-through;
line-height: 1.5;
letter-spacing: 2px;
width: 200px;
height: 150px;
margin: 10px 20px 15px 5px;
padding: 5px 10px;
Border Width
border-width: 2px;
border-top-width: 2px;
border-right-width: 2px;
border-bottom-width: 2px;
border-left-width: 2px;
Border Color
border-color: #RRGGBB;
border-top-color: #RRGGBB;
border-right-color: #RRGGBB;
border-bottom-color: #RRGGBB;
border-left-color: #RRGGBB;
Border Radius
border-radius: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
position: relative;
top: 10px;
right: 20px;
bottom: 15px;
left: 5px;
display: block;
visibility: hidden;
float: left;
clear: both;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
grid-template-columns: 100px 200px;
grid-template-rows: 50px 100px;
grid-column: 1 / span 2;
grid-row: 1 / span 2;
grid-column-gap: 10px;
grid-row-gap: 15px;
background-color: #RRGGBB;
background-image: url('path/to/image.jpg');
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
opacity: 0.7;
transition: property duration timing-function delay;
transition-property: width;
transition-duration: 0.5s;
transition-timing-function: ease-in-out;
transition-delay: 0.2s;
animation: name duration timing-function delay iteration-count direction fill-mode play-state;
animation-name: slide;
animation-duration: 2s;
animation-timing-function: ease-in-out;
animation-delay: 0.5s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-fill-mode: forwards;
animation-play-state: running;
z-index: 1;
box-sizing: border-box;
overflow: hidden;
overflow-x: auto;
overflow-y: scroll;
cursor: pointer;
box-shadow: 5px 5px 10px #888888;
Happy coding! 🚀