CSS - background属性在移动浏览器上不起作用

问题描述 投票:0回答:1

我的网站中的元素背景有问题。在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

css background
1个回答
3
投票

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

enter image description here

正如您所看到的那样,它位于文件的第475行,因此只需编辑/删除它即可。

© www.soinside.com 2019 - 2024. All rights reserved.