Reputation: 125
On my page I have a <video> tag. In my CSS I can style this video tag using the following selector:
.current video{
width:400px;
left:0px;
}
Is it possible to start the video as well using css? I found the relevant looking property animation-play-state:running;
, however this has a different usage.
Upvotes: 0
Views: 2942