㈠ div 怎样插入背景图片
四种方法:
需要注意的是,如果div中没有内容,则通过设置高宽来设置测试查看背景图片
第一种:
<divstyle="background:url(images/2.jpg);height:200;width:200;"></div>
第二种:
head部分引入
<style>.div{background:url(images/2.jpg);height:200;width:200;}</style>
第三种:在head部分引入外部样式表
<linkrel="stylesheet"type="text/css"href="css/style.css"/>
并在style表中写入:
.div{background:url(images/2.jpg);height:200;width:200;
第四种,在设计页面直接选择:修改>页面属性>背景图像
希望能够帮助到你,满意请选择。谢谢。
㈡ div 代码 如何设置 DIV 背景图片
关于如何设置 DIV 背景图片,如下例子:如果是背景图片重复就把no-repeat改为repeat
div{background:url(images/1.jpg) no-repeat;}