<style type="text/css"> /* Beim Textfeld fokussieren die Hintergrundfarbe wechseln */
.textfeld { background-color: #F4F4F4; border: solid 1px #C0C0C0; }
.textfeld:hover, .textfeld:focus { background-color: #FFFFFF; } </style>
</head> <body>
<input type="text" class="textfeld">
|