Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS placeholder opacity 1 on safari

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #301292
    macpheek
    Participant

    Hi, does anyone know how to make form placeholders opacity:1 on safari? Below is the code I’m using, it’s working on all browsers but not safari, hope someone can help

    input[type=”text”]::-webkit-input-placeholder { opacity:1!important; }
    input[type=”text”]::-moz-placeholder { opacity:1!important; }
    input[type=”text”]:-ms-input-placeholder { opacity:1!important; }
    input[type=”text”]:-moz-placeholder { opacity:1!important; }
    ::-webkit-input-placeholder { opacity:1!important; }
    ::-moz-placeholder { opacity:1!important; }
    :-ms-input-placeholder { opacity:1!important; }
    :-moz-placeholder { opacity:1!important; }

Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.