Sometimes, we want to style the input and submit button with CSS.
In this article, we’ll look at how to style the input and submit button with CSS.
How to style the input and submit button with CSS?
To style the input and submit button with CSS, we use attribute selectors.
For instance, we write
input[type="text"] {
//...
}
input[type="submit"] {
//...
}
textarea {
//...
}
to select the text input with input[type="text"]
We select the input with type submit with input[type="submit"]
.
And we select the text area with textarea
.
Conclusion
To style the input and submit button with CSS, we use attribute selectors.