Code:
	
	<select size="1" name="D1" style="scrollbar-base-color : #CFDAE7; scrollbar-arrow-color : #FFFFFF; "> <option value="Herr">Eins</option> <option value="Frau">zwei</option> <option value="Firma">Drei</option> </select> mit Style (style="scrollbar-base-color : #CFDAE7; scrollbar-arrow-color : #FFFFFF; ")</p>
Aber so sieht es doch doof aus, wenn ich das nicht anwenden kann?
Code:
	
	<html>
<head>
<style type="text/css">
input,select,textarea
{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
color: #000000;
scrollbar-base-color : #CFDAE7; 
scrollbar-arrow-color : #FFFFFF;
background-color: #B9C5E5;
border: 1px solid #E69406
font-size:10px;
}
body
{
font-size:10px;
}
</style>
</head>
<body>
<table>
<tr>
<td width="150">Anrede *</td>
<td width="250">
<select size="1" style="width:190px;">
<option>Firma</option>
<option>Herr</option>
<option>Frau</option></select>
</td>
</tr><tr>
<td width="150">Strasse *</td>
<td width="250">
<input type="text" name="strasse" value="" style="width:190px;">
<img src="/img/symbole/1pix.gif" width="10" height="1">
<input type="text" name="hausnr" value="" style="width:50px;">
</td>
</tr>
<tr>
<td width="150">PlZ + ORT *</td>
<td width="250">
<input type="text" name="plz" value="" style="width:50px;">
<img src="/img/symbole/1pix.gif" width="10" height="1">
<input type="text" name="hausnr" value="" style="width:190px;">
</td>
</tr>
</table>
</body>
</html>
          
Kommentar