CSS - 后台属性不适用于移动浏览器

时间:2017-12-15 21:13:33

标签: css background

我的网站中有一个元素的背景问题。在PC浏览器上,这个元素看起来是:

enter image description here

但在手机上,这个元素正在寻找:

enter image description here

为什么这个图标" X"无法在手机上显示?这是我的CSS代码:

.select2-search-choice-close {
  display: block;
  position: absolute;
  right: 3px;
  top: 4px;
  width: 12px;
  height: 13px;
  font-size: 1px;
  background-repeat: no-repeat;
  background-image: url('http://mysite.pl/templates/default/panel/img/select2.png');
  background-position: right top; 
  outline: none;
}

任何人都可以帮助我吗?感谢。

编辑:

问题在于这种布局:https://wrappixel.com/demos/free-admin-templates/maruti-admin/form-common.html

1 个答案:

答案 0 :(得分:3)

在移动设备上,您可以在此屏幕截图中看到另一种覆盖背景图片的样式:

enter image description here

正如您可以在文件的第475行看到的那样,只需编辑/删除它即可。