Hallo Andrea,
Erstmal räumen wir deinen HTML-Code auf: Innerhalb von <table></table> darf es nur bestimmte Elemente geben, und <form> gehört nicht dazu.
<form name="interval" action="">
<div id="posmenue" class="tableposdiv">
<table class="menue" cellspacing="0" cellpadding="0" width="180px" height="120px">
<tr bgcolor="#99CCCC">
<td>Alter</td>
<td></td>
</tr>
<tr>
<td>0-10</td>
<td><input type=radio name=iv value="zehn" checked="checked" /></td>
</tr>
</table>
</div>
</form>
Und nun das css-Geraffel dazu
<style type="text/css">
/* Standard-Abstaende von Formularen wegmachen */
form {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
table.menue {
background-color : #F8F8FF;
border-style : groove;
border-color: #5F9EA0;
text-align : left;
padding:0px;
}
table.menue td {
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 10px;
}
.tableposdiv {
background-color:#FFFFFF;
font-size :10px;
}
</style>
ACHTUNG:
Kommentare gehen in CSS ausschließlich so:
/* font-size: 10px; */
nicht
// font-size: 10px;