首页 > 代码库 > 背景相关属性

背景相关属性

background-color:颜色的各种表示方式都可以

background-image:none / url()----------------------------经常忘记url()的编写

background-repeat:repeat(默认) / no-repeat / repeat-x /repeat-y

background-attachment:scroll / fixed 背景图像随着滚动条是否移动

backround-position:左边的值   右边的值

  左边的值:left center  right 

       使用百分比 左上角是 0% 0%。右下角是 100% 100%。如果您仅规定了一个值,另一个值将是 50%。

       使用像素     左上角是 0 0。单位是像素 (0px 0px) 或任何其他的 CSS 单位。如果您仅规定了一个值,另一个值将是50%

  您需要把 background-attachment 属性设置为 "fixed",才能保证该属性在 Firefox 和 Opera 中正常工作。