A crisp morning view of our new raised herb garden with Noche and Cholla looking on and a wide angle of my favorite satellite dish scanning the morning air.

I often photograph the sky at varying times of day to get good color for gradient website backgrounds. They render really well and I haven’t had a duplicate yet.

The code to render this example would be this:

body {
  background-color:#024176;
  background-image: -moz-linear-gradient(top, #024176 0%, #4683c2 100%);
  background-image: -webkit-linear-gradient(top, #024176 0%, #4683c2 100%);
  background-image: linear-gradient(top, #024176 0%, #4683c2 100%);
}

Here’s an example of the gradient coded for Mozilla. If the above doesn’t gradient then you’re viewing on a Webkit platform.

Here’s an example of the gradient coded for Webkit. If the above doesn’t gradient then you’re viewing on a Mozilla platform.