一个清爽的button按钮样式

仅仅一月的时间,曾经满眼雪白的棉花地只剩下暗褐色的一片,偶尔星星点点飘几点白色,也暗然无光。人类征服大自然的力量是神奇强大的,这种超乎寻常的功能有时候总让你难以置信。
效果如下:

复制代码
代码如下:

<html>
<head>
<title></title>
<style type="text/css">
.clear { /* generic container (i.e. div) for floating buttons */
overflow: hidden;
width: 100%;
}
a.button {
background: transparent url('IMG/bg_button_a.gif') no-repeat scroll top right;
color: #444;
display: block;
float: left;
font: normal 12px arial, sans-serif;
height: 24px;
margin-right: 6px;
padding-right: 18px; /* sliding doors padding */
text-decoration: none;
}
a.button span
{
background: transparent url('IMG/bg_button_span.gif') no-repeat;
display: block;
line-height: 14px;
padding: 5px 0 5px 18px;
}
a.button:active {
background-position: bottom right;
color: #000;
outline: none; /* hide dotted outline in Firefox */
}
a.button:active span {
background-position: bottom left;
padding: 6px 0 4px 18px; /* push text down 1px */
}
</style>
</head>
<body>
<a class="button" rel="nofollow noopener noreferrer" href="javascript:void(0);"><span>按钮</span></a>
</body>
</html>

这是IMG文件夹下的两张图片:

bg_button_a:

bg_button_span:

以上就是一个清爽的button按钮样式。贤从智中取,智从学中求。更多关于一个清爽的button按钮样式请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
用css消除button/selcet等控件选中时的虚线框(让页面美观点)

Button未设type属性时在非IE6/7中具有submit特性并自动提交form

input button文字的行高在FF下的显示问题

button在IE6/7下的黑边去除方案

表单button的outline在firefox浏览器下的问题