1.复制相对路径时,是images\banner2.png,注意把\改成/,css只能\,而用img插入时\和/都可以
2.必须设置宽高,因为背景图片不会撑开容器,只有容器的内容才会撑开容器。
<style>
div{
width: 600px;
height: 600px;
background-image: url(images/banner2.png);
}
</style>
1.复制相对路径时,是images\banner2.png,注意把\改成/,css只能\,而用img插入时\和/都可以
2.必须设置宽高,因为背景图片不会撑开容器,只有容器的内容才会撑开容器。
<style>
div{
width: 600px;
height: 600px;
background-image: url(images/banner2.png);
}
</style>