17
04.10

How to style HTML/XHTML input tag by type with CSS

Use the below CSS code to edit the HTML/XHTML input tag by type.

CSS code:

input[type=button]{}
input[type=checkbox]{}
input[type=file]{}
input[type=image]{}
input[type=password]{}
input[type=radio]{}
input[type=reset]{}
input[type=submit]{}
input[type=text]{}

Post a comment