Blankman
Blankman

Reputation: 267020

How to override default style on an input textbox

I have a default style like this:

input[type="text"] 
{ width: 250px; }

Now I have a input box that I want to have 450 width, how can I do this?

I've tried:

#searchbox 
{

width: 450px;
}


<input type="text" value="" name="asb" id="searchbox">

but that didn't work.

Upvotes: 3

Views: 8228

Answers (1)

Pat
Pat

Reputation: 25675

Just make sure your rule is more specific than the default like so:

input[type="text"]#searchbox {
    width: 450px;
}

Upvotes: 5

Related Questions