Hi
i have an input field and i want it to be 2 different sizes in internet explorer and firfox if possible, the code i have right now is:
div.search input#query {
width: 450px;
height: 24px;
font-size: 16px;
}
so i want somthing like this:
div.search input#query {
if internet explorer { width: 450px;}
else { width: 350px;}
height: 24px;
font-size: 16px;
}
thanks