I have created on css file for input type styling, by which, i am changing the style of input type textbox, and that i have used in my whole web page. But, now i got one problem, i want that, a particular input type, shouldn't be affected by my created css file. In short, i want css exception, for particular input type. So that... input styling remain same and not be effected by css styling.Any idea, how to achieve this. Idea will be appreciated !!!
this is the code of my css file
input
{
color:#000000;
font-size:14px;
border:#666666 solid 2px;
height:24px;
margin-bottom:10px;
width:200px;
}
textarea
{
color:#000000;
font-size:14px;
border:#666666 solid 2px;
height:124px;
margin-bottom:10px;
width:200px;
}
and i want that, it should not be applied on this
<input type="image" src="images/loginbutton.png" style="width:80px;height:40px" />