For older blogs visit us at :- https://webtipstop.blogspot.com/
Gradient use in background using CSS
<html>
<head>
<title>Table Designs </title>
<style>
#demo
{
height:200px;
width:200px;
background: #CE4C15;
background: linear-gradient(to right, #CE4C15 0%, #FDFFE8 41%, #1AC526 100%);
}
</style>
</head>
<body>
<div id="demo"></div>
</body>
</html>
Let's Output
Gradient use in background using CSS
<html>
<head>
<title>Table Designs </title>
<style>
#demo
{
height:200px;
width:200px;
background: #CE4C15;
background: linear-gradient(to right, #CE4C15 0%, #FDFFE8 41%, #1AC526 100%);
}
</style>
</head>
<body>
<div id="demo"></div>
</body>
</html>
Let's Output
Comments
Post a Comment