Deutsch
<!-- 完整的HTML文件如下: --> <html><head> <style type="text/css"> <!-- .text { Schriftfamilie: „Arial“, „Helvetica“, „sans -Serife"; Schriftgröße: 12pt; Farbe: #ff0000 } a:hover { Schriftfamilie: „Arial“, „Helvetica“, „sans-serif“; Schriftgröße: 12pt; Farbe: #000000 ;Textdekoration: keine } .normal {Hintergrundfarbe:#ccccc; } .over {background-color:#cccccc; border-top: 1px #ffffff solid; Rand links: 1px #ffffff solid; border-right: 1px #999999 solid; border-bottom: 1px #999999 solid } .down {background-color:#cccccc; border-top: 1px #999999 solid; Rand links: 1px #ffffff solid; Rand rechts: 1px #ffffff solid; border-bottom: 1px #ffffff solid } .link {text-decoration: none; Farbe:#000000; Schriftfamilie: 宋体} --> </style> </head> <body bgcolor="#cccccc" text="#000000"> <table width="80" border="0" cellpadding="0" cellpacing ="0" height="30"> <tr> <td class=normal onmouseover='this.className="over"' onmousedown='this.className="down"' onmouseup='this.className="over" ' onmouseout='this.className="normal"' > <div align="center" > <a style="cursor: default" href="http://www.downcodes.com" target="_blank">测试按钮</a> </div> </td> </tr> </table> </body> </html>