한국어
<!-- 完整的HTML文件如下: --> <html><head> <style type="text/css"> <!-- .text { 글꼴 패밀리: "Arial", "Helvetica", "sans -가는 장식 선"; 글꼴 크기: 12pt; color: #ff0000 } a:hover { 글꼴 계열: "Arial", "Helvetica", "sans-serif"; 글꼴 크기: 12pt; 색상: #000000 ;텍스트 장식: 없음 } .normal {배경 색상:#ccccc; } .over {배경색:#cccccc; 테두리 상단: 1px #ffffff 솔리드; 테두리 왼쪽: 1px #ffffff 솔리드; 테두리 오른쪽: 1px #999999 솔리드; 테두리 하단: 1px #999999 단색 } .down {배경 색상:#cccccc; 테두리 상단: 1px #999999 솔리드; 테두리 왼쪽: 1px #ffffff 솔리드; 테두리 오른쪽: 1px #ffffff 솔리드; 테두리 하단: 1px #ffffff 솔리드 } .link {텍스트 장식: 없음; 색상:#000000; 글꼴 패밀리: 宋体} --> </style> </head> <body bgcolor="#cccccc" text="#000000"> <table width="80" border="0" cellpadding="0" 셀 간격 ="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>