Languages
[Edit]
EN

CSS - style input type password only

0 points
Created by:
James-Z
767

In this article, we would like to show you how to style HTML input element with type="password" only using CSS.

Quick solution:

input[type=password] {
    background: yellow;
}

 

Practical example

In this example, we present how to use CSS attribute selector to style only those input elements, that are password type.

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <style>

    input[type=password] {
        background: #ffe973;
    }

  </style>
</head>
<body>
  <input type="text" placeholder="username" />
  <input type="password" placeholder="password" />
  <input type="password" placeholder="confirm password" />
</body>
</html>

 

See also

  1. CSS - style input type text only

  2. CSS - style input type number only

References

  1. Attribute selectors - CSS: Cascading Style Sheets | MDN
  2. <input>: The Input (Form Input) element - HTML: HyperText Markup Language | MDN

Alternative titles

  1. CSS - style HTML input element with type="password" only
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join