用 CSS 让你的按钮(button)更加迷人_ Div+Css教程-查字典教程网
用 CSS 让你的按钮(button)更加迷人
用 CSS 让你的按钮(button)更加迷人
发布时间:2016-12-27 来源:查字典编辑
摘要:查看演示我们用A包含一个SPAN标签来实现此效果:HTML:按钮文字设置按钮样式:a.button{background:transpare...

查看演示

我们用 A 包含一个 SPAN 标签来实现此效果:

HTML:

<a href="#"><span>按钮文字</span></a>

设置按钮样式:

<style type="text/css">

a.button {

background: transparent url('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('bg_button_div.gif') no-repeat;

display: block;

line-height: 14px;

padding: 5px 0 5px 18px;

}

</style>

为按钮添加点击样式:

<style type="text/css">

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>

由于 IE 下点击后不能还原到默认状态,因此,我们需要在标签里添加一段代码:

<a class="button" href="#" onclick="this.blur(); return false;"><span>按钮文字</span></a>

如果你需要用它提交表单(FORM),那么可以在 onclick 里面添加一个提交语句,如:document.forms['theForm'].submit();

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新 Div+Css教程学习
    热门 Div+Css教程学习
    网页设计子分类