Hi there zinn123,
and a warm welcome to these forums. 
try it like this...
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>fixed select width</title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<style type="text/css">
/*<![CDATA[*/
select {
width:550px;
}
option {
width:534px;
overflow:hidden;
}
/*//]]>*/
</style>
</head>
<body>
<form action="#">
<div>
<select>
<option></option>
<option>big option</option>
<option>big option big option big option big option big option big option big option big option big option big option big option big option big option big option big option big option</option>
</select>
</div>
</form>
</body>
</html>
coothead
Bookmarks