これが私のhtmlです:
<form action="/" method="get" class="searchForm">
<input type="search" placeholder="Search...">
<input type="submit" value="">
</form>
そして私のCSS:
input[type="search"]{
height: 31px;
width: 254px;
border: 1px solid #ccc;
border-right: none;
padding: 0 5px;
float: left;
border-radius: 5px 0 0 5px;
}
各コーナーに等しい半径を与えるモバイルサファリを除くすべてのブラウザーで正常に機能します。入力タイプをテキストに変更すると機能しますが、検索と送信では機能しません。
私は追加しようとしました:
input {
-webkit-appearance: none;
border-radius: 0 !important;
}
何か案は?前もって感謝します!