We can make CSS selector more specific using attribute's certain value
.my-form input[type="text"]{
    padding: 8px;
    width: 100%;
}
In this example, only inputs will be selected with types
text
by Valeri Tandilashvili
5 years ago
CSS
properties
CSS Crash Course For Absolute Beginners
2
Pro tip: use ```triple backticks around text``` to write in code fences