I want to add a horizontal scroll in a select element. The code that I show you below works properly in chrome, however it does not work in firefox or ie.
<html>
<head>
<link rel="stylesheet" type="text/css" href="estilo.css">
</head>
<body>
<select id="select" name="select" size ='3'>
<option value="value1">LUNES</option>
<option value="value2">MARTES</option>
<option value="value3">MIERCOLES</option>
</select>
</body>
</html>
and the following css:
.select{
width: 100px;
overflow: auto;
height: 70px;
}
If anyone knows a common solution for all browsers, I'd appreciate it.