Ich hab da mal ne Frage:
Auf meiner Website habe ich das Design der Buttons und Eingabebereiche
per css folgendermaßen festgelegt:
Code: Alles auswählen
.button{
border-bottom: black 1px solid;
border-left: #297394 1px solid;
border-right: black 1px solid;
border-top: #297394 1px solid;
font-family:Verdana;
font-size: 11px;
text-align:left;
padding-left:5px;
padding-top:2px;
padding-bottom:2px;
font-weight:bolder;
color:black;
background-color:#dfdfdf;
cursor:hand;
display:inline;
width:auto;
}
.text{
background-color:whitesmoke;
color:#297394;
border:1px solid black;
}
Code: Alles auswählen
class="button"
´Das Problem besteht darin, dass ich über diese Methode beim Feld
Code: Alles auswählen
<input type="file">
Hat jemand eine Idee, wie ich das Design der beiden Elemente unabhängig voneinander definieren kann?
Also z.b.
Code: Alles auswählen
<input type="file" name="data" text_class="text" button_class="button">