Is it me or can you not make select lists the same width in all browsers with one CSS statement?
eg.
Yet the select list displays a different width in all three browsers.
Is this just something you have to put up with or am I doing something wrong?
cheers,
1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!
eg.
Code:
select {
padding:0px;
margin:0px;
display:block;
float:left;
width:200px;
}
Yet the select list displays a different width in all three browsers.
Is this just something you have to put up with or am I doing something wrong?
cheers,
1DMF
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!