为什么我在#bg中实现背景后无法使用image src函数?

时间:2016-10-18 20:37:56

标签: html css

#bg{
    background: url("adventure.jpg") no-repeat center center fixed;
   }

<img src="sword.png" alt="sword" width="100px" height="100">

为什么我在#bg中实现背景后无法使用image src功能?我应该只使用背景图片吗?但即使我改为背景图像,图像也没有出现,我该怎么办?

1 个答案:

答案 0 :(得分:0)

&#13;
&#13;
#bg {
background-color : green;
}

.bg {
background-color : red;
}
&#13;
<div id='bg' style='height:50px; width : 50px;'></div>
<div class='bg' style='height:50px; width : 50px;'></div>
&#13;
&#13;
&#13;