あなたは、すべての<button>
sはCSSと同じように見えるために、通常の<a href>
リンクとスタイルを使用することができます。
<!doctype html>
<style>
button, input[type=submit], .btn {
color: black;
text-decoration: none;
font-weight: normal;
padding: 3px;
border: 2px outset #000;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background: rgb(232,232,232); /* Old browsers */
background: -moz-linear-gradient(top, rgba(232,232,232,1) 0%, rgba(229,229,229,1) 44%, rgba(204,204,204,1) 71%, rgba(216,216,216,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(232,232,232,1)), color-stop(44%,rgba(229,229,229,1)), color-stop(71%,rgba(204,204,204,1)), color-stop(100%,rgba(216,216,216,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(232,232,232,1) 0%,rgba(229,229,229,1) 44%,rgba(204,204,204,1) 71%,rgba(216,216,216,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(232,232,232,1) 0%,rgba(229,229,229,1) 44%,rgba(204,204,204,1) 71%,rgba(216,216,216,1) 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, rgba(232,232,232,1) 0%,rgba(229,229,229,1) 44%,rgba(204,204,204,1) 71%,rgba(216,216,216,1) 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e8e8e8', endColorstr='#d8d8d8',GradientType=0); /* IE6-9 */
background: linear-gradient(top, rgba(232,232,232,1) 0%,rgba(229,229,229,1) 44%,rgba(204,204,204,1) 71%,rgba(216,216,216,1) 100%); /* W3C */
cursor: default;
}
button:hover, input[type=submit]:hover, .btn:hover {
background: #eee;
}
button:active, input[type=submit]:active, .btn:active {
border: 2px inset;
}
</style>
<form action="http://www.example.com" method="get">
<button>This is a button</button>
<a class="btn" href="http://www.example.com">This is a link</a>
<input type="submit" value="This is a submit button">
</form>
これは、クラス.btn
表情で<button>
sおよびリンクは実質的に同一になります。唯一顕著な違いは、フォーカスがあるときに要素が受け取るのはoutline
で、「実際の」ボタンの内側とリンクの外側に現れます。
@Marieもし私が究極のCSSグラデーションジェネレータ(http://www.colorzilla.com/gradient-editor/)を使ってグラデーションを作成したのですが、 [CSS3Generator.com](http://css3generator.com/)は、ボーダー半径や他の新しい標準ではないものを作成するのにも便利です。 –