Apple iphone导致按钮在网站上被压扁

时间:2017-03-02 14:51:55

标签: html ios iphone cakephp

我遇到一个问题,在我的网站上有一个按钮被压扁但只在实际的iphone上,我无法在任何模拟器或模拟器上重新创建它来调试它。

我正在使用html和cakephp

这是截图

enter image description here

这是按钮代码

<button id="ca_btn">
<img src="<?= CAKEPHP_URL ?>/img/ca_button.jpg" border="0" />
</button>

CSS

#ca_btn {

        background-color: white;
        border:none;
    }

    #ca_btn:focus{ outline:0;}

2 个答案:

答案 0 :(得分:1)

尝试这样做以取消苹果的造型

#ca_btn {
    background-color: transparent;
    border:none;
    -webkit-appearance: none;
    border-radius: 0;
}

答案 1 :(得分:1)

您应该为此编写媒体查询。 也许Min-height可以工作。 试试这两件事。