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).

copy


   <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.

copy

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)

» Creating A Pure CSS Preloader - Source Code

» Learn how to create an overlay effect with CSS

» How To Create A Stacked Gallery Using HTML And CSS Source Code

» Learn how to create responsive images with CSS

» Learn how to create Gradient Backgrounds using CSS

collections_bookmark Category :: Css
date_range Published :: 3 years ago At: 01:04 AM
event_note Detailed Date :: Jun 01st, 2020
person Writer :: Code
  • RECENT POSTS
8 months ago

How to force the browser to cache a page?

There are several ways to force a web browser to cache an HTML page:


8 months ago

How can i cache pages using php?

You can use the output buffering functions in PHP to cache pages. Output buffering allows you to store the output of a PHP script in a buffer, which you can then manipulate before sending it to the client.


8 months ago

PHP explained in a few lines

PHP is a popular programming language that is widely used for web development. It stands for "PHP: Hypertext Preprocessor" and is a server-side scripting language. This means that it is executed on the server, rather than in the user's web browser.


8 months ago

HTML explained in a few lines

HTML, or Hypertext Markup Language, is the standard markup language for creating web pages and web applications. It is used to structure and organize content on the web, and to create the basic structure and layout of a webpage.


8 months ago

CSS explained in a few lines

CSS, or Cascading Style Sheets, is a stylesheet language used for describing the look and formatting of a document written in HTML. CSS is used to control the presentation of multiple web pages at once, making it a crucial tool for web developers and designers.


2 years ago

A JavaScript library for formatting and manipulating numbers - Numeral.js

Check out this lightweight JavaScript library used for formatting and manipulating numbers.


2 years ago

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.


2 years ago

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.


Subscribe
  • ADVERTISEMENT

YOU MAY LIKE THESE POSTS

share