CSS图像未显示在页面上

时间:2015-04-22 05:03:26

标签: css asp.net-mvc image visual-studio background-image

我的路径可能不正确,但我将图像从其文件夹拖放到css背景属性,因此它应该是正确的。它看起来不错,但不确定。如果我从注释掉的代码中看到的https url加载另一个图像,它可以正常工作!

如果我有正确的路径,它可能是图像安全性或权限吗?我将图像从另一个文件夹复制到App_Data / Images /。 我没有收到任何javascript控制台错误或控制台中的任何内容,说无法找到图像。

.centerMarker {
  position: absolute;
  /*url of the marker*/
  background: url('../App_Data/Images/meetups.png') no-repeat;
  /*this does not work*/
  /*background: url(https://maps.gstatic.com/mapfiles/markers2/marker.png) no-repeat;*/
  /*this works*/
  /*center the marker*/
  top: 50%;
  left: 50%;
  z-index: 1;
  /*fix offset when needed*/
  margin-left: -10px;
  margin-top: -34px;
  /*size of the image*/
  height: 34px;
  width: 20px;
  cursor: pointer;
}

site.css是css所在的位置,您可以从此图片中看到图像位于App_Data中的图像中。

enter image description here

以下是我在IE浏览器中的DOM工具中看到的内容。 这是对的吗?

enter image description here

0 个答案:

没有答案