0

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

小提琴

它应该是这样的:

在此处输入图像描述

但是当我在 iphone 上部署应用程序时,屏幕如下所示:

在此处输入图像描述

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

在此处输入图像描述

只是不知道为什么在 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;
}
4

1 回答 1

1

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

none外观或textfield外观。Here is a fiddle with none,它似乎在 Safari 6/OSX 上对我有用(没有可用于测试的 iDevice)。

于 2013-09-21T15:24:24.303 回答