CSS background 全铺

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS background 全铺相关的知识,希望对你有一定的参考价值。

background:url(../CMS_Img/CMS.PNG) -5px -5px; background-repeat:-2px -68px;

<div class="TOP_1">aaa</div> 背景无法全铺?
我要的不是这个结果。 是2px -68px 这个区域 设置为背景,全铺

参考技术A 你写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;本回答被提问者和网友采纳
参考技术B background-repeat :

repeat 默认。背景图像将在垂直方向和水平方向重复。
repeat-x 背景图像将在水平方向重复。
repeat-y 背景图像将在垂直方向重复。
no-repeat 背景图像将仅显示一次。
inherit 规定应该从父元素继承 background-repeat 属性的设置。

background-position :
x pos y pos 第一个值是水平位置,第二个值是垂直位置。左上角是 0 0。单位是像素 (0px 0px) 或任何其他的 CSS 单位。如果您仅规定了一个值,另一个值将是50%。您可以混合使用 % 和 position 值。

你估计搞混了.

参考资料:http://www.w3school.com.cn/css/pr_background-position.asp

参考技术C 你这样是不行的。 你控制了像素,就不能用平铺了。 参考技术D background-repeat:平铺就行了啊

以上是关于CSS background 全铺的主要内容,如果未能解决你的问题,请参考以下文章

Css03

css 背景色如何平铺

css基础 背景Text文本格式Font字体链接列表Table表格

前端学习总结

js源码之五子棋

如何用纯CSS3制作进度条