I need to change the background image of a class randomly using an external CSS file. The image should be randomly selected from the definition path.
I know how to handle this in php, I have to implement it in an external css file.
looking for a css trick.
here are the properties of the css class.
.birthday
{
background:url(../images/Bday.jpg) no-repeat center;
font: bold 25px "trebuchet ms", Tahoma, Verdana, Arial, Helvetica, sans-serif;
color: #930204;
padding: 25px 0px 0px 200px;
height: 195px;
}
Wayset as the file structure.
source
share