Hallo,
ich möchte gerne einen, über CSS, vordefinierten Button, in der HTML-Datei aufrufen und weiter definieren. Wie kann ich das machen?
Viele Grüße
Markus
Code der CSS-Datei:
a.button_dunkel {
position: absolute;
height: 40px;
width: 100px;
line-height: 30px;
font-size: 1.0em;
font-weight: bold;
font-family: Calibri;
text-align:center;
text-decoration: none;
background-image:url(grafik/Reiter_dunkel.PNG);
z-index: 1;
}
a.button_dunkel { text-decoration: none; color: #CFC08C;
}
a.button_dunkel:Visited { text-decoration: none; color: #CFC08C;
}
a.button_dunkel:Active { text-decoration: none; color: #CFC08C;
}
a.button_dunkel:Hover { text-decoration: none; color: #800000;
}
Code der HTML-Datei:
<div class="button_dunkel"> // Hier würde ich jetzt gerne den Left-Wert definieren //
<a class="button_dunkel" href="#">Aktuelles</a>
</div>