风格在Chrome和Firefox Safari和iPhone中显示不同

时间:2013-09-20 14:53:18

标签: html iphone css google-chrome firefox

我正在使用Chrome实现基于html-javascript的应用的搜索框:

fiddle

它应该是这样的:

enter image description here

但是当我在iphone上部署app时, 屏幕看起来像这样:

enter image description here

我知道它与webkit的区别,我认为使用safari调试它会是一个解决方案,但是,当我使用safari打开它时,它看起来像这样:

enter image description here

只是不知道为什么在iPhone上,它看起来像那样。如何改进我需要的功能?

这是html:

<div class="form-wrapper">
    <input type="text" placeholder="Search here..." required>
    <button type="submit">Search</button>
</div>   

CSS:

.form-wrapper {
    height: 80px;
    background: #555;
    color: #FFF;
    clear: both;
}
.form-wrapper input {
    background-color: #FFF;
    -moz-box-sizing: border-box;
    border-radius: 10px;
    border: 5px solid #E5E4E2;
    margin: 2px;
    height: 40px;
    vertical-align: middle;
    padding: 20px;
    margin-top: 15px;
    width: 85%;
}
.form-wrapper button {
    overflow: visible;
    position: absolute;
    float: right;
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 40px;
    width: 110px;
    color: #FFF;
    text-transform: uppercase;
    background: red;
    border-radius: 0 3px 3px 0;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
    margin: 20px -116px;
}
.form-wrapper button:before {
    content:'';
    position: absolute;
    border-width: 8px 8px 8px 0;
    border-style: solid solid solid none;
    border-color: transparent red transparent;
    top: 12px;
    left: -6px;
}

1 个答案:

答案 0 :(得分:1)

type="search"会导致该字段在Safari上显示-webkit-appearance: searchfield,这会导致您的许多样式被忽略。

none外观或textfield外观。 这里是a fiddle none,这似乎适用于Safari 6 / OSX(没有iDevice可用于测试)。