css使用背景图片或图标的方法
时间:11-04
作者:
可以直接使用
background:#435871 url(../images/top_us.gif) no-repeat 3px 12px
no-repeat 为不重复
3px 12px 为图片定位
left = 4px 左
top = 12px 顶
这个是对你
background:#435871 url(../images/top_us.gif) no-repeat 3px 12px
no-repeat 为不重复
3px 12px 为图片定位
left = 4px 左
top = 12px 顶
这个是对你
可以直接使用
background:#435871 url(../images/top_us.gif) no-repeat 3px 12px
no-repeat 为不重复
3px 12px 为图片定位
left = 4px 左
top = 12px 顶
这个是对你的背景图片定位,4px是水平方向距左4个像素;12px是垂直方向距顶12个像素
background:#435871 url(../images/top_us.gif) no-repeat 3px 12px
no-repeat 为不重复
3px 12px 为图片定位
left = 4px 左
top = 12px 顶
这个是对你的背景图片定位,4px是水平方向距左4个像素;12px是垂直方向距顶12个像素
-
上一篇
CSS里的 no-repeat 是什么意思
css中no-repeat一般用在元素backgroud-repeat的设置中,含义为不平铺; 一般与background-image 一起使用; 此图片做背景时不平铺; 另外还有几个其他值: repeat:平铺 repeat-x:横向
- 下一篇
CSS position 属性
实例定位 h2 元素:h2 { position:absolute; left:100px; top:150px; }下面放实列代码<html><head><style type="text/css">h2.pos_abs{position:absolute;left:100px;to