IOS Chrome select box width issue

Input type Date and select box not picking its styles on chrome and safari on Iphone 6s Plus/ IOS.

.account_form .form .form-control {
    background: rgba(255,255,255,0.3) !important;
    border: 0;
    border-radius: 0 !important;
    color: yellow;
    font-weight: bold;
    padding-left: 50px;
}

Screeenshot

Upvotes: 0

Views: 497

Answers (1)

itacode
itacode

Reputation: 3787

Please try to add:

-moz-appearance: none;
-webkit-appearance: none;
appearance: none;

Upvotes: 1

Related Questions