rocket

css gradients properties tutorial

  • CSS defines two types of gradients:
  • Linear Gradients (goes down/up/left/right/diagonally)
  • Radial Gradients (defined by their center)

css gradients properties tutorial.CSS gradients let you display smooth transitions between two or more specified colors.

            16

top
top to bottom


#gradient {
  background-image: linear-gradient(red, yellow);
}
left to right


#gradient {
  background-image: linear-gradient(to right, red , yellow);
}
Repeating a linear-gradient


#gradient {
  background-image: repeating-linear-gradient(red, yellow 10%, green 20%);
}
top left to bottom right


#gradient {
  background-image: linear-gradient(to bottom right, red, yellow);
}
180deg


#gradient {
  background-image: linear-gradient(180deg, red, yellow);
}
Multiple Color


#gradient {
  background-image: linear-gradient(red, yellow, green);
}
Rainbow Background


#gradient {
  background-image: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet);
}
Transparency


#gradient {
  background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
}
Repeating a linear-gradient


#gradient {
  background-image: repeating-linear-gradient(red, yellow 10%, green 20%);
}

Skills assessment. Although the years working on a skill can provide an indication of maturity and expertise gained, this alone is not enough. Different people have different levels of gaining knowledge and expertise and there are people that have a natural inclination to some specific skills.

HTML5
100%
CSS3
100%
JAVASCRIPT
100%
PHP
100%
JQUERY
100%
WORDPRESS
100%
SQL
100%
XML
100%
DESIGN & DEVELOPMENT
⭐⭐⭐⭐⭐  Best Seller
100%
PHOTO MAKER
100%
PHOTOSHOP
100%
SEO
100%