Languages
[Edit]
EN

CSS - style HTML input element

0 points
Created by:
Isaiah89
751

In this article, we would like to show you how to style HTML input element using CSS.

Quick solution:

input {
    background: yellow;
}

 

Practical example

In this example, we present how to use CSS type selector to style all input elements on the web page.

// ONLINE-RUNNER:browser;

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

    input {
        background: #ffe973;
    }

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

Note:

To style only inputs of specific type, go to the articles from See also section below.

See also

  1. CSS - style input type text only

  2. CSS - style input type password only

  3. CSS - style input type number only

References

  1. Type 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 elements
  2. CSS - style all HTML inputs on web page
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