Css3

HTML5 placeholder color with CSS

Share

Want to change the color of a placeholder of your input fields? Here is an example that helps you to change the color of a placeholder.

Basically, there are three different implementations i.e. pseudo-elements, pseudo-classes, and nothing.

  • WebKit, Blink (Safari, Google Chrome, Opera 15+) and Microsoft Edge are using a pseudo-element: ::-webkit-input-placeholder.
  • Mozilla Firefox 4 to 18 is using a pseudo-class: :-moz-placeholder (one colon).
  • Mozilla Firefox 19+ is using a pseudo-element: ::-moz-placeholder, but the old selector will still work for a while.
  • Internet Explorer 10 and 11 are using a pseudo-class: :-ms-input-placeholder.

Note: Internet Explorer 9 and lower versions does not support the placeholder attribute while Opera 12 and lower do not support any CSS selector for placeholders.

Here is the code for changing color of placeholders:

CSS:
::-webkit-input-placeholder { /* WebKit, Blink, Edge */color:    #FF6550;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */color:    #FF6550;
opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */color:    #FF6550;
opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */color:    #FF6550;
}
HTML:
<input name="txt" placeholder="Looks colorful!">
<textarea placeholder="Looks colorful also!"></textarea>

Note to remember that firefox’s placeholder appears to be defaulting with a reduced opacity, so we need to use opacity: 1 here.

Recent Posts

The Rise of NFTs: Exploring the Impact of Non-Fungible Tokens on the Digital Economy

NFTs, or Non-Fungible Tokens, are revolutionizing the digital economy. These unique digital assets, authenticated through…

16 hours ago

Unveiling the Truth: Is the Spread of Sinus Infections a Myth or Reality?

Sinus infections, impacting approximately 31 million Americans each year, represent a significant health concern stemming…

2 days ago

Best Exercises To Reduce Weight & Keep You Stronger & Fitter!

No doubt that balanced weight is the key to wellness. So, when it comes to…

2 days ago

ARTIFICIAL INTELLIGENCE: Advantages And Disadvantages? Everything You Need to Know

Pros And Cons Of AI: Artificial Intelligence directly translates to conceptualizing and building machines that…

2 days ago

Four common mistakes when picking an internet provider

We all live on the internet; we use it for everything. Thus, when it comes…

2 days ago

What Is Commonly Misdiagnosed as Pink Eye: Understanding Eye Conditions and Their Symptoms

Introduction: Pink eye, or conjunctivitis, is a common eye condition characterized by redness and inflammation…

3 days ago