CSS Attribute Value Selector
Preview
Code
<style>
input[type="text"]{
border:2px solid #2563eb;
}
</style>
<input type="text" placeholder="Text input">
<input type="password" placeholder="Password">
<style>
input[type="text"]{
border:2px solid #2563eb;
}
</style>
<input type="text" placeholder="Text input">
<input type="password" placeholder="Password">