Reputation: 319
I have CSS code like this
div ul li input{ width:70%}
What to do if I want this style applicable Only to the input elements of type=text ?
Upvotes: 6
Views: 5078
Reputation: 723468
Use an attribute selector
div ul li input[type=text] { width: 70%; }
Upvotes: 14