本帖最後由 阿達金田一 於 2012-5-21 22:56 編輯
用一般的超連結標籤 a 就可以... class=button 就好了
style 部份...替入你的 css
[CSS] 純文本查看 復制代碼
<style type="text/css">
a.button {
display: -moz-inline-stack;
display: inline-block;
width: 182px;
height: 39px;
background: url("http://dabuttonfactory.com/b.png?t=Your%20text%20here&f=Calibri-Bold&ts=24&tc=ffffff00&tshs=1&tshc=22222200&it=png&c=5&bgt=gradient&bgc=47c&ebgc=238&hp=20&vp=11") no-repeat;
line-height: 39px;
vertical-align: text-middle;
text-align: center;
color: #ffffff;
font-family: Calibri;
font-size: 24px;
font-weight: bold;
font-style: normal;
text-shadow: #222222 1px 1px 0;
}
a.button > span {
display: -moz-inline-block;
}
</style>
<body>
<a class=button href="http://nonameteam.cc">NoName Team</a>
</body>
|