button bunt machen usw

Status
Nicht offen für weitere Antworten.

tobiastt

Erfahrenes Mitglied
Hallo

ich habe folgenden Code:

<form action="logout.php" method="post">
<input type="submit" value="AUSLOGGEN" style="width:250px; height :25px">
</form>

und will diese button ein bissel bunt machen evtl form verändern usw. wie mach ich das mit css

bis jetzt hab ich folgendes:


BODY {

font-size: 12pt;
font-family:Arial;
}

h1 {
font-size: 16pt;
}

h2 {
font-size: 14pt;
}

h3 {
font-size: 12pt;
}

TD {
font-family : Arial;
font-size: 12pt;
}


TH {
font-family : Arial;
font-size: 12pt;
}

UL{
list-style-type:circle;
list-style-position:inside;
llist-style-position:eek:utside;
}
OL{
list-style-type:upper-alpha;
}

Dank euch

Gruß Tobi
 
Füg einfach noch sowas z.B. hinzu:
Code:
.ButtonBunt{
    background: #123123;
    border: 1px solid #321321;
}

im HTML-Code:
<input class="ButtonBunt" (...) />

greetz
daddz
 
SUPER GEHT Und was muss ich tun um Links farbig zu bekommen?

<li><a href="vibrationdata.php" target="display" >Vibrationdata</a></li>


Danke

Gruß tobi
 
Status
Nicht offen für weitere Antworten.
Zurück