views:

51

answers:

3

I have a problem in my page.I have some combo boxes in it.In other browsers it looks very good but in IE-7 it looks very bad. It is bordered white in it. How can I solve this problem. Any idea ?

+1  A: 

You can try using CSS to change the border color to transparent.

BioXhazard
I have already done it. I have set its margin and padding to 0 and also tried to set cell's background color same as background color of combo box.
Kapil
+2  A: 

In CSS set:

border:none;
border-color:transparent;
Jurgen
ok thanks for your answer. I will try it.
Kapil
A: 

Try using a css reset in your projects it helps avoiding such problems. css reset

Iznogood