CSS Syntax:
background: color position size repeat origin clip attachment image|initial|inherit;
With this css rule I got white background:
<style>
body
{
background: #00ff00 url('smiley.gif') no-repeat fixed cover center;
}
</style>
What's wrong? Any Idea? I try to set background-size cover with short background command?