背景(Background)如何缩写?_Div+CSS教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!
  
  Background背景的属性如下:

示例代码 [www.mb5u.com]
  ●background-color:#f00;
  ●background-image:url(background.gif);
  ●background-repeat:no-repeat;
  ●background-attachment:fixed;
  ●background-position:0 0;

  可以缩写为一句:background:#f00 url(background.gif) no-repeat fixed 0 0;
  语法是background:color image repeat attachment position;


  你可以省略其中一个或多个属性值,假如省略,该属性值将用浏览器默认值,默认值为:

示例代码 [www.mb5u.com]
  ●color: transparent
  ●image: none
  ●repeat: repeat
  ●attachment: scroll
  ●position: 0% 0%

来源:无忧整理//所属分类:Div+CSS教程/更新时间:2007-01-11
相关Div+CSS教程