コンタクトフォーム7送信ボタンcssリセット

iPhoneでのコンタクトフォーム7のcssのリセット

input[type="submit"],
input[type="button"] {
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    border: none;

}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

input[type="submit"]:hover,
input[type="button"]:hover {
    opacity: 0.8;
    cursor: pointer;
}
この記事をシェアする