下列CSS代码进行缩写,符合缩写规范的是( )。 background-position : 0 0 ; background-repeat : no-repeat ;[br][/br]background-image : url( bg.gif ) ;
A: ackground-image : "bg.gif" no-repeat 0 0 ;
B: ackground : "bg.gif" no-repeat 0 0 ;
C: ackground : url( "bg.gif" ) no-repeat 0 0 ;
D: ackground-url : "bg.gif" no-repeat 0 0 ;
A: ackground-image : "bg.gif" no-repeat 0 0 ;
B: ackground : "bg.gif" no-repeat 0 0 ;
C: ackground : url( "bg.gif" ) no-repeat 0 0 ;
D: ackground-url : "bg.gif" no-repeat 0 0 ;
举一反三
- 下列哪个是( )设置背景图片(bg.gif)水平方向平铺? A: background:url(bg.gif) repeat-x; B: background:url(bg.gif) repeat-y; C: background:url(bg.gif) no-repeat; D: background:url(bg.gif);
- 以下( )代码可以实现背景平铺效果 A: div{background-image:url(image/bg.gif);} B: div{background-image:url(image/bg.gif) repeat-x;} C: div{background-image:url(image/bg.gif) repeat-y;} D: div{background-image:url(image/bg.gif) no-repeat;}
- 下列代码如何简写: background-image: url(tp.jpg); background-position:centertop; background-repeat:no-repeat; A: ackground: url(tp.jpg) no-repeat centertop; B: ackground: no-repeat centertop url(tp.jpg); C: ackground: url(tp.jpg) centertopno-repeat;
- 将以下 CSS 代码进行缩写,注意要符合缩写的规范。 background-position:0 0; background-repeat:no-repeat; background-attachment:fixed; background-color:#f00; background-image:url(background.gif);
- 设置背景颜色为green,背景图片垂直居中显示,背景图片充满整个区域,但是背景图片不能变形,图片只出现一次,以下书写正确的是( ) A: ackground:url("../img/img1.jpg") no-repeat center/cover green; B: ackground:url("../img/img1.jpg") repeat center/cover green; C: url("../img/img1.jpg") no-repeat center/100% green; D: url("../img/img1.jpg") no-repeat center/100% 100% green;