绝对图片网址未在移动设备上显示

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

我在此网站上集成了我们的签名:http://www.moteljoanne.com/

使用此代码:

a.logoDSI {
    display: block;
    width: 115px;
    height: 20px;
    background-image: url('http://www.groupedsi.com/images/realise-par/logoDSI_rect-pale.png');
    background-position: 0% 0%;
    text-indent: -999999px;
    margin: 14px 10px 9px 10px;
}

a.logoDSI:hover {
    background-position: 0% -100%;
}

<a id="logoeDream" href="http://www.edreamweb.com" title="eDream | Services d'hébergement - eCommerce - Développement mobile" target="_blank"><span>eDream</span></a>

这在PC和MAC上正常工作,但是当我使用iPod或iPad访问它时,徽标根本不显示。这不是响应式设计引起的定位问题,因为我只需要使用相对路径即可显示图像。当我更改服务器上的绝对路径后,图片仅会在移动设备上消失。

此行为正常吗?有没有一种方法可以让我获得使用移动设备的绝对途径?

css url mobile relative-path absolute-path
1个回答
0
投票

这不应该是因为绝对路径-d毫无问题地显示在移动设备中。检查div的位置:相对....您是否需要在移动版本中使用它和CSS?

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