宽容他人,放过自己。

css Backgrounds(背景设置)

Posted on By anchoriteFili

相关链接:

body {
    /*
    background-image:url("http://c.hiphotos.baidu.com/image/pic/item/b3b7d0a20cf431ad799ccaf94f36acaf2fdd98a0.jpg");
    background-repeat:no-repeat; 
    background-position:right top; 
    margin-right:200px; 
    */
    /*为了简写这些属性的代码,我们可以将这些属性合并在同一个属性中*/
    /*顺序:background-color background-image background-repeat 
    background-attachment background-position*/
    background:#063 url(89%88.png) no-repeat left top;
    margin:200px;
    /*
    background: 简写属性,作用是将背景属性设置在一个声明中。
    background-attachment: 背景图像是否固定或者随着页面的其余部分滚动。
    background-color: 设置元素的背景颜色
    background-image: 把图像设置为背景。
    background-position: 设置背景图像的起始位置。
    background-repeat: 设置背景图像是否及如何重复
    repeat: 背景图像将向垂直和水平方向重复。这是默认
    repeat-x: 只用水平位置会重复背景图像。
    repeat-y: 只用垂直位置会重复背景图像。
    no-repeat: 图片不会重复。
    inherit: 指定background-repea属性设置应该从父元素继承。
    */
}