background怎么写( 二 )


css width - 宽度:确定盒子本身的宽度 , 可以使盒子的宽度不依靠它所包含的内容多少 。
css height - 高度 :确定盒子本身的高度 。
css clear - 清除 :用于清除设置的浮动效果 , 常用参数both 、left、right 。
margin - 边距 :控制围绕边框的边距大小 。其中包含4个属性:margin-top控制上边距的宽度 。
margin-right:控制右边距的宽度 。
margin-bottom:控制下边距的宽度 。
margin-left:控制左边距的宽度 。
padding -内边界:确定围绕块元素的空格填充数量 。
font-family- css字体:设定时 , 需考虑浏览器中有无该字体 。
font-size - css字体大小:注意度量html单位 。
font-weight - css字体粗细-css加粗样式:除了normal(正常e799bee5baa6e79fa5e98193e4b893e5b19e31333366306436)、bold(粗体)、bolder(特粗)、lighter(细体)外 , 还有9种以像素为度量为单位的设置方式 。
css font-style-样式:css字型 。
css line-height - css行高:行距 。
font-variant - css变形:可以将正常文字一半尺寸后大写显示 。
text-transform - css大小写:这项属性能轻而易举地控制字母大小写 。
5. CSS background 全铺 你写background-repeat:-2px -68px;这个是想干嘛?给你改一下横向平铺: background:url(../CMS_Img/CMS.PNG) -5px -5px repeat-x;竖向平铺: background:url(../CMS_Img/CMS.PNG) -5px -5px repeat-y;全部平铺: background:url(../CMS_Img/CMS.PNG) -5px -5px repeat;不平铺: background:url(../CMS_Img/CMS.PNG) -5px -5px no-repeat; 。
6. css 背景background属性的简写我看不懂意思 背景的总简写规则:
background:transparent none repeat scroll 0% 0%
第一个是:0 32px
距左:0px
距上:32px
第二个:right -132px
right 右对齐 , 即距离右边界为:0px
-132px 距上为 负132px , 即把背景提出内容区(多用于css sprite  , 提取大图中的一个小图 , 但按你上面的例有个repeat-y 我想这里不知道可用css sprite了)
第三个:
left 左对齐 , 即距左边界为:0px
top 顶端对齐 , 即距上边界为:0px
第三个为默认值 , 可省略不写 , 或直接写成:0 0;
------------
还有:
backgroung:url( 。.) repeat-y right top;
backgroung:url( 。.) repeat-y left bottom;
backgroung:url( 。.) repeat-y right bottom;
backgroung:url( 。.) repeat-y center;
backgroung:url( 。.) repeat-y center top;
backgroung:url( 。.) repeat-y center bottom;
等……
【background怎么写】自己多试试就知道了 。