为什么我的html+css中div的背景图片无法铺满

发布网友 发布时间:2022-04-23 02:52

我来回答

6个回答

热心网友 时间:2022-04-21 00:50

你说的是紫色块吗,你要写个这个

*{margin:0px;padding:0px;}

你这边上都是边距

热心网友 时间:2022-04-21 02:08

background:url("abc.gif") 3px 5px no-repeat;
/*从左向向3px,从上向下5px,截图,no-repeat表示不平铺图片*/

background:url("abc.gif") no-repeat;
/*不截图不平铺,直接显示图片*/

background:url("abc.gif") repeat-x;
/*横向平铺图片*/

background:url("abc.gif") repeat-y;
/*横竖向平铺图片*/

background:url("abc.gif");
/*平铺图片*/

热心网友 时间:2022-04-21 03:43

<style>
*{
margin:0px;
padding:0px;
}

body{
background-image:url("background.jpg");
background-attachment:fixed;
}

div{
width:50px;
height:50px;
background:url("145.png");
}
</style>

热心网友 时间:2022-04-21 05:34

添加下面样式试一试!

.body{
margin:0px;
padding:0px;
}

热心网友 时间:2022-04-21 07:42

div{background:url(145.png) repeat scroll 50% 0px transparent} 这个div里面没用的属性去掉 你加个50%和0px 做什么用

热心网友 时间:2022-04-21 10:07

图片像素太小了吧 用ps把图片像素调大点

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com