将img设置为背景

时间:2016-06-27 00:48:26

标签: html css background-image

我想知道如何使用

background设置为图像
<img src="" alt="sample" width="480" height="500" border="0"> 

我知道我没有图片名称,因为我从下拉菜单中选择图片。 我的问题是如何集成要显示为background image的代码。

这就是我需要将它整合到的地方。

.container {
  background-color: lightgrey;
  width: 500px;
  height: 500px;
  border: 2px solid;
  position: relative;
  overflow: auto;
}

1 个答案:

答案 0 :(得分:1)

PropertyChanged属性不适用于background代码,因为img标记已经是img当然要使用图片,所以如果你想要要应用src,然后使用像background这样的元素,然后在CSS中应用属性。

如果你想从下拉列表中选择,你可以使用JS

来使用类

&#13;
&#13;
div
&#13;
$('select').change(function() {
  $('.container').hide();
  $('#' + $(this).val()).show();
})
&#13;
body {
  margin: 0
}
.container {
  width: 500px;
  height: 500px;
  border: 2px solid;
  position: relative;
  overflow: auto;
}
.red {
  background: red
}
.green {
  background: green
}
.blue {
  background: blue
}
&#13;
&#13;
&#13;