I've used the following CSS and I wonder if I can change the background to use some gif i.e. instead of background:white use the following gif as background http://media.giphy.com/media/8OUdE03f3Nauc/giphy_s.gif
#carousel figure {
display: block;
position: absolute;
width: 150px;
height: 111px;
left: 10px;
top: 10px;
background: white;
overflow: hidden;
border: solid 1px black;
}
ive tried with background: url('http://media.giphy.com/media/8OUdE03f3Nauc/giphy_s.gif');
and also this
background-image:'http://media.giphy.com/media/8OUdE03f3Nauc/giphy_s.gif' which is not working...