在DIV里面用一个像素的图片,作为背景图片,铺满,代码要怎么写?

有没有人在啊,想请讲解下,在DIV里面用一个像素的图片,作为背景图片,铺满,代码要怎么写?
最新回答
许仙没带伞

2024-06-05 05:28:35

简写 background:url(images/bot.png) no-repeat;//整个大图作为背景
background:url(images/bot.png) repeat-x;//沿X轴平铺
background:url(images/bot.png) repeat-y;//沿y州平铺
叶舞霓裳

2024-06-05 10:47:34

<div style="background:url(***.jpg);width:300px;height:200px;"></div>

其他的可以省略
background:url(***.jpg)
你是我所有的梦

2024-06-05 12:23:31

style="background-image:url(图片地址); background-repeat:repeat;"
°小可爱

2024-06-05 10:42:43

<div style="background:url(图片地址) left top;">
...
</div>