Skip to content

Instantly share code, notes, and snippets.

@bendo01
Created July 23, 2013 18:29
Show Gist options
  • Save bendo01/6064873 to your computer and use it in GitHub Desktop.
Save bendo01/6064873 to your computer and use it in GitHub Desktop.
ios 7 css gradient
main#wrap {
margin: auto;
width: 100%;
height: 912px;
background: #3f77a4; /* Old browsers */
background: -webkit-linear-gradient(top, #3f77a4, #8bb6d0, #6e80b8 70%, #26447c);
background: -moz-linear-gradient(top, #3f77a4, #8bb6d0, #6e80b8 70%, #26447c);
background: -o-linear-gradient(top, #3f77a4, #8bb6d0, #6e80b8 70%, #26447c);
background: -ms-linear-gradient(top, #3f77a4, #8bb6d0, #6e80b8 70%, #26447c);
background: linear-gradient(top, #3f77a4, #8bb6d0, #6e80b8 70%, #26447c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment