大内高手社区

标题: CSS背景简写具体怎么操作 [打印本页]

作者: 择沓    时间: 2021-12-28 10:22
标题: CSS背景简写具体怎么操作
  CSSbackground-简写属性

  如需缩短代码,也可以在一个属性中指定所有背景属性。它被称为简写属性。

  而不是这样写:

  body{

  background-color:#ffffff;

  background-image:url("tree.png");

  background-repeat:no-repeat;

  background-position:righttop;

  }

  您能够使用简写属性background:

  实例

  使用简写属性在一条声明中设置背景属性:

  body{

  background:#ffffffurl("tree.png")no-repeatrighttop;

  }

  在使用简写属性时,属性值的顺序为:

  background-color

  background-image

  background-repeat

  background-attachment

  background-position

  属性值之一缺失并不要紧,只要按照此顺序设置其他值即可。请注意,在上面的例子中,我们没有使用background-attachment属性,因为它没有值。





欢迎光临 大内高手社区 (http://bbs.tedu.cn/) Powered by Discuz! X3.4