強力なCSS!ボタンがハイパーリンクに変わります

488 ワード

原文:http://natbat.net/2009/Jun/10/styling-buttons-as-links/
button.link {
	font-family: "Verdana" sans-serif;
	font-size: 1em;
	text-align: left;
	color: blue;
	background: none;
	margin: 0;
	padding: 0;
	border: none;
	cursor: pointer;
}

button.link span {
	text-decoration: underline;
}
button.link:hover span,
button.link:focus span {
	color: black;
}