输入位置在Iphone上无法正常显示

时间:2016-04-14 23:18:08

标签: javascript html css iphone input

我对输入表格感到困惑。当我在开发者控制台中检查它时,一切正常。但是当我从我的iPhone上检查它时,它将位置改为大约1-2px。我从具有相同尺寸的Android手机检查它,一切都还可以。 在开发控制台中输入Iphone 5 - http://cs629525.vk.me/v629525181/40c5e/zrdadYwKeBU.jpg。 从我的iphone 5s输入 - http://cs629525.vk.me/v629525181/40c57/KjsRhwnjQ4k.jpg。 代码

<form id="subscribe">
            <input type="text" class="enter-email" name="subscribe-email" id="subscribe-email" placeholder="YOUR EMAIL" spellcheck="false" />
            <button type="submit" id="signup-button" class="signup-button c-form">NOTIFY ME</button>
            <label for="subscribe-email" class="subscribe-message c-form"></label>
        </form>
<!--css-->
.enter-email {
margin-top: 30px;
margin-left: 17.5%;
width: 40%;
font-size: 16px;
height: 50px;
background: none;
border: 2px solid white;
color: #fff;
text-align: center;
outline: none;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;}

.signup-button {
height: 50px;
border: 2px solid white;
color: white;
text-align: center;
padding: 5px;
font-size: 16px;
width: 25%;
background: #32dbd0;
margin-left: -6px;
transition: all 0.4s ease;}

::-webkit-input-placeholder {
color: #fff;
font-size: 16px;
text-align: center;
padding: 1px; }

1 个答案:

答案 0 :(得分:0)

将以下内容添加到您的两个元素中:

.enter-email {
    vertical-align: top;
    ...
}

.signup-button {
    vertical-align: top;
    ...
}

按钮和输入默认为内联块。这将迫使他们在同一水平上对齐。