TriNitroToluene
TriNitroToluene

Reputation: 319

Apply Style only to input=text

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

Answers (2)

arb
arb

Reputation: 7863

div ul li input[type=text]
{ 
    width:70%
}

Upvotes: 4

BoltClock
BoltClock

Reputation: 723468

Use an attribute selector

div ul li input[type=text] { width: 70%; }

Upvotes: 14

Related Questions