border-left: 200px;
margin-right: 200px;
这样,border左边就会有200px的距离,而右边的元素也会有200px的距离css增大题目到顶部的距离,也就是文字到顶部的距离吧
可以设置标签区域块内边距的距离用paddin-top:像素;或者设置一下区域块的外边距margin-top:像素;
希望我的回答对你有所帮助;
0是背景的位置,表示顶部对齐,到顶部距离为0,center表示居中
css中背景样式分别如下:
background-color:#999999; //元素的背景色
background-image : url("path/bgFilegif"); //设置背景图像
background-repeat : repeat-x | repeat-y | repeat | no-repeat; //设置重复方式
background-attachment : fixed | scroll; //设置背景的固定方式
background-position : X轴坐标,Y轴坐标[top,bottom,center,left,right,20px,10%];
//设置背景的左上角位置,坐标可以是以百分比或固定单位
background 可以用这个属性把前面几个综合起来进行简写,
background 各个值的次序依次如下:
background-color | background-image | background-repeat | background-attachment | background-position
例如:
bg01{
background-color: #FFCC66;
background-image: url("path/bgFilegif");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: left top;
}
上面可以简写为:
bg01{background:#FFCC66 url("path/bgFilegif") no-repeat fixed left top; }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)