锚点需要href属性才能在IOS上显示为块吗?

时间:2015-07-24 11:38:43

标签: html ios css

我对没有href属性的锚标记有些麻烦。它似乎在所有浏览器/设备上显示正常,除了在ios上,它似乎显示:块不工作或其他东西。具有href属性的锚标签看起来很好。

这是HTML:

<p>
    <a href="mailto:email@email.com" class="yellow-button" name="return">
        email@email.com
    </a>
</p>
<p>
    <a class="yellow-button" name="return">
        012345678900
    </a>
</p>

CSS:

.yellow-button {
        background-color: #ffd959;
        color: #333 !important;
        padding: 8px 16px 9.6px 16px;
        border-radius: 3px;
        display: inline-block;
        text-decoration: none;
        cursor: pointer;
        -webkit-transition: all 0.1s;
        -moz-transition: all 0.1s;
        transition: all 0.1s;
    }

这是错误的屏幕截图: enter image description here

知道我在这里做错了什么?

编辑:我理想地寻找一些方法来仅使用CSS来纠正这个问题。和/或弄清楚为什么ios显示此错误

0 个答案:

没有答案