|
|
Webseiten-Tools.de |
|
CSS-Styling |
|
|
|
|
|
Die Pseudo-Klasse :hover (Rollovereffekt): Hierfür wird zuerst eine Klasse und an- schließend die Pseudo-Klasse definiert. Die Eigenschaften der Pseudo-Klasse treten automatisch beim Überfahren des Buttons mit der Maus in Kraft.
Code:
<style type="text/css">
<!--
.button1 {
color:#FFFFFF;
font-family:Arial;
font-size:10pt;
border: 1px solid #000000;
background-color: #666666;
width:155px;
height:20px;
}
.button1:hover {
color:#043766;
font-family:Arial;
font-size:10pt;
border: 1px solid #1F77EF;
background-color: #BCD9F9;
width:155px;
height:20px;
}
-->
</style>
|
|
|
|
|
Standard = cursor: default;
Hand = cursor:pointer;
Hilfe = cursor: help;
Fadenkreuz = cursor: crosshair;
|
|
|
|
|
|
|