经典指数          
原因
3216
浏览数
0
收藏数
 

将以下CSS代码进行缩写,注意要符合缩写的规范。

a) 代码一: border-width:1px; border-color:#000; border-style:solid;

b) 代码二: background-position:0 0; background-repeat:no-repeat; background-attachment:fixed; background-color:#f00; background-image:url(background.gif);

c)代码三: font-style:italic; font-family:”Lucida Grande”,sans-serif; font-size:1em; font-weight:bold; font-variant:small-caps; line-height:140%;

d) 代码四: list-style-position:inside; list-style-type:square; list-style-image:url(image.gif);

e)代码五: margin-left:20px; margin-right:20px; margin-bottom:5px; margin-top:20px;

f)代码六: color:#336699; color:#ffcc00;

     举报   纠错  
 
切换
1 个答案

a) 代码一:

border:1px solid #000; 

b) 代码二:

background-image:#f00 url(background.gif)

no-repeat fixed

;

c)代码三:

font:bold italic 1em/140%

small-caps

”Lucida Grande”,sans-serif;

d) 代码四:

list-style:inside square url(image.gif);

e)代码五:

margin:20px 20px 5px;

f)代码六:

color:#369;

color:#fc0;

 
切换
撰写答案