Switch to full style
CSS code examples
Post a reply

gradient background color using CSS

Mon Feb 27, 2012 10:14 pm

In this example we present how to add gradient color to your web page background without using image banner. In this case we use CSS properties one for Mozilla Firefox, one for Internet Explore and one for Chrome.
Code:
<html>

<
head>
  <
title>background attachments</title>
<
style type='text/css'>
body {
filter
progid:DXImageTransform.Microsoft.gradient(startColorstr='#4b74b0'endColorstr='#2b446a');
background:
-
moz-linear-gradient(50100% , #2b446a 20%, #4b74b0 100%) 
repeat scroll 0 0 transparent;
background:
-
webkit-gradient(linear0 100%, 0 20%, from(#2b446a), to(#4b74b0));

height:800px;
</
style>

</
head>

<
body>
<
p
 
gradient  background color using CSS
</p>
</
body>
</
html>

 




Post a reply
  Related Posts  to : gradient background color using CSS
 Gradient Color in java     -  
 Background color - mile200     -  
 change background color with RGB     -  
 skymiles background color     -  
 Follow window background color     -  
 inherit background color from the parent element     -  
 changing the background color for site main menu.     -  
 Calculating image Gradient     -  
 draw Round gradient     -  
 Color and CSS     -  

Topic Tags

CSS Background