#bg{
background: url("adventure.jpg") no-repeat center center fixed;
}
<img src="sword.png" alt="sword" width="100px" height="100">
为什么我在#bg中实现背景后无法使用image src功能?我应该只使用背景图片吗?但即使我改为背景图像,图像也没有出现,我该怎么办?
答案 0 :(得分:0)
#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;