W3Schools背景短命令参考

时间:2014-02-19 17:33:11

标签: css css3

CSS Syntax:
background: color position size repeat origin clip attachment image|initial|inherit;

有了这条css规则,我得到了白色背景:

<style>
body
{ 
background: #00ff00 url('smiley.gif') no-repeat fixed cover center; 
}
</style>

怎么了?任何的想法?我尝试用短背景命令设置背景大小的封面?

1 个答案:

答案 0 :(得分:0)

来自Mozilla reference for background

  

background-size:必须在之后指定此属性   background-position,用'/'字符分隔。

所以:

background: #00ff00 url('smiley.gif') no-repeat fixed center / cover;