php code to display a div with background fade

Solutions on MaxInterview for php code to display a div with background fade by the best coders in the world

showing results for - "php code to display a div with background fade"
Matthew
15 Oct 2018
1body {
2    background: url('http://placehold.it/1600x1200') no-repeat center center fixed;
3    -webkit-background-size: cover;
4    -moz-background-size: cover;
5    -o-background-size: cover;
6    background-size: cover;
7}