Text-Feld Hintergrund-Farbe + Schriftart ?

Status
Nicht offen für weitere Antworten.
das geht mittels css:
hab da mal beispiel für textarea, inpufeld und son select-dropdown-auswahl:
Code:
input 
{ 
 font family: Verdana, Tahoma, Arial, Helvetica, sans-serif; 
 font-size: 12px; 
 border-bottom: steelblue 1px solid; 
 border-left: steelblue 1px solid; 
 border-right: steelblue 1px solid; 
 border-top: steelblue 1px solid; 
 background-color: #003366 ;
 color: white;
} 
textarea { 
 font-family: Verdana, Tahoma, Arial, Helvetica,sans-serif; 
 border-bottom: steelblue 1px solid;
 border-left: steelblue 1px solid; 
 border-right: steelblue 1px solid;
 border-top: steelblue 1px solid; 
 background-color: #003366;
 color: white;
}

select 
{ 
 font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif; 
 background-color: #003366; 
 border-color : steelblue steelblue steelblue steelblue;
 font-size: 10px;
 color: white; 
 padding : 0 0 0 0;
 }

mfg, grem
 
mit css:
das kommt in den head-teil:
Code:
<style type="text/css">
input {
    border-style:solid;
    border-width:1px;
    border-color:#000000;
    background-color:#cccccc;
    font-family:verdana, arial;
    font-size:11px;
    font-color:#ffffff;
    font-weight:bold;
}
</style>

und dann einfach im body teil das input bzw. textarea-tag setzten
sollte funktionieren
Beispiel:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
    <head>
        <style type="text/css">
        input {
            border-style:solid;
            border-width:1px;
            border-color:#000000;
            background-color:#cccccc;
            font-family:verdana, arial;
            font-size:11px;
            font-color:#ffffff;
            font-weight:bold;
        }
        textarea {
            border-style:solid;
            border-width:1px;
            border-color:#000000;
            background-color:#cccccc;
            font-family:verdana, arial;
            font-size:11px;
            font-color:#ffffff;
            font-weight:bold;
        }
        </style>
    </head>

    <body>
        <input type="text" value="blub"><br>
        <textarea rows=5 cols=30>blub</textarea>
    </body>
</html>

greets daIllu ;-)
 
Zuletzt bearbeitet:
sack du ;-)

zur gleichen zeit geposted wie ich :( bzw. bisserl früher :(
but, that's life

greets daIllu ;-)
 
Status
Nicht offen für weitere Antworten.

Neue Beiträge

Zurück