Learn how to create Gradient Backgrounds using CSS

Make money for being or staying online/internet.
You will get a $5 starting gift when you join using this link:: GET THE OFFER NOW!!
As you might know, HTML5 introduced many exciting features for Web developers. One of the features is the ability to specify gradients using pure CSS3, without having to create any images and use them as repeating backgrounds for gradient effects.
Gradients let you display smooth transitions between two or more specified colors.
The linear-gradient() CSS function creates an image consisting of a progressive transition between two or more colors along a straight line.
More so, Its result is an object of the gradient data type, which is a special kind of image.
Tutorial
To follow the tutorial above, create two files i.e index.html and style.css and add the code below respectively.
HTML
Add this code in the body section of your html document(index.html).
<div class="container"> <div class="box"> </div> <div class="box"> </div> <div class="box"> </div> <div class="box"> </div> </div>
CSS
Add this code in the style.css file you created and link to it in the head section of the index.html file.
body{ margin:0; padding:0; box-sizing: border-box; } .container{ max-width: 80%; margin:0 auto; display: grid; grid-template-columns: repeat(4,1fr); grid-gap:10px; } .box{ width:100px; height:150px; margin-top:250px; /*Fallback color incase all fail.*/ background-color:#333; /*For Old Browsers.*/ background-image:-webkit-gradient(linear, left top, left bottom, from(#333),to(#fff)); background-image:-webkit-linear-gradient(top,#333,#fff); background-image:-o-linear-gradient(top,#333,#fff); background-image:-ms-linear-gradient(top,#333,#fff); background-image:-moz-linear-gradient(top,#333,#fff); /*Upto date Browsers.*/ background-image:linear-gradient(to bottom,#333,#fff); }
You See gradients were super played out back in the early web days, but now they’re so ubiquitous that you’d be remiss not to drop them in your site or interface. So have fun trying out new gradient backgrounds.
Save up to 80% with this Domain & Shared Hosting package deal! 80% OFF - GET OFFER NOW
Related Post(s)
» How to use the CSS Negation and Language Selectors.
» Learn how to create Gradient Backgrounds using CSS
» Create A Cool Layout Using CSS
» How to center anything on a wepage using CSS
» How to create a Cutout Text Effect using CSS
collections_bookmark Category :: Cssdate_range Published :: 2 years ago At: 01:04 AM
event_note Detailed Date :: Jun 01st, 2020
person Writer :: Code
- RECENT POSTS

A JavaScript library for formatting and manipulating numbers - Numeral.js
Check out this lightweight JavaScript library used for formatting and manipulating numbers.

All Countries Drop Down List | HTML Select Country Name
This simple country dropdown list is freely available for you to copy and use in your project forms.

HTML Entities Code Alphabet Discovery Using JavaScript
In this post I will show how writing just a few lines in JavaScript will allow you to render, browse and discover the alphabetical letters using a set of HTML entity codes.

YTS YIFY MOVIES API - PROJECT PREVIEW
Download YTS YIFY movies using this simple project I created using their API.

Display Random Advice On Your Website or Web App Using Advice Slip JSON API
Here is a short project to display the use of APIs. I decided to work with an advice API because it seemed like a fun one that I haven't worked on before.

How do I get a YouTube video thumbnail from YouTube using PHP
Have you ever been on youtube and admired a thumbnail of a video?

How to recreate Facebook's console warning
When I was inspecting some code on Facebook. I came across this interesting feature. A simple styled console warning message from Facebook to its dear users(products).

How To Create A Stacked Gallery Using HTML And CSS Source Code
In this post I provide you with the source code for the youtube tutorial I made on how to create a Stacked image gallery Using HTML and CSS.
- ADVERTISEMENT