同时设定背景颜色和背景图像(background-repeat: repeat;)后,如何显示?
只显示背景图片
举一反三
- 背景图默认重复显示,即background-repeat:repeat; ( )
- 想让背景图像完全填充空间应该用background-repeat:repeat;。
- 背景重复属性也称为背景图像平铺属性,用来设定对象的背景图像重复以及如何铺排。语法: background-repeat:取值;取值可以为: A: repeat B: no-repeat C: repeat-x D: repeat-y
- #lujing{ background-image:url(images/navbg.gif); background-repeat: ; } 上面代码中,设置id为lujing的页面路径背景图像为images/navbg.gif,将background-repeat:的属性值设置为(),可以使背景图像水平重复。 A: repeat-x B: repeat-y C: repeat D: no- repeat
- 同时设置页面的背景颜色和背景图像,预览时将会如何显示
内容
- 0
如果需要在页面上对背景图像进行平铺,可以使用什么属性 A: backgroud B: background-repeat C: no-repeat D: repeat
- 1
设置背景图像位置的代码是()。 A: background-color:#b4f4fd; B: background-image:url(images/bg4.jpg); C: background-repeat:repeat; D: background-position:center bottom;
- 2
设置CSS背景图片中,用于设置网页元素的背景图像无背景的代码是什么 A: background-image:repeat; B: background-image:repeat-x; C: background-image:repeat-y; D: background-image:none;
- 3
要实现背景图片在水平方向的平铺,应该设置为什么? A: background-repeat:repeat B: background-repeat:repeat-x C: background-repeat:repeat-y D: background-repeat:no-repeat
- 4
背景图像平铺background-repeat属性中,下面()项代表的是沿水平方向平铺? A: repeat B: no-repeat C: repeat-x D: repeat-y