Zitat:
/* Feld einer Umfrage */
div table td[width="150"] {
width: 300px!important;
display: block;
float:left;
padding: 10px;
margin: 10px;
border-radius: 10px; }
/* Feld um Antwort */
div table[align="center"] td {
display: block;
border: 1px solid #c9c9c9;
padding: 10px;
width: 270px;
background-color: #000000; }
/* Abstände zwischen Ergebnissen */
div table[align="center"] tr { display: block; margin-bottom: 13px; clear:left; }
/* Abstimmen-Button */
div form input[type="submit"] {
float: left;
margin:10px 80px 10px ;
border:1px solid #c9c9c9; }
Und das <center> </center> mitten im CSS Code muss heraus.
HTML darf nicht im CSS-Code platziert werden.
Du wolltest damit den Absende-Button mittig setzen.
Das wurde mit dem CSS-Code oben behoben , durch margin (Außenabstand)
Gruß Wolle
______________