首页 > 开发 > CSS > 正文

CSS网页制作技巧:Button样式设置代码

2024-07-11 09:02:13
字体:
来源:转载
供稿:网友

武林网(www.vevb.com)文章简介:css中Buttons样式最佳设置.

制作按钮时,我们平常都用“<button>”、“input[type=rest]”、“input[type="submit"]”和“input[type=button]”较多,如果你想让你的按钮漂亮,记得加上下面的样式:


/*IE下除去多余的边距 */
  .button{
   overflow: visible;
  }
  /* Firefox下去除焦点虚线框 */
  .button::-moz-focus-inner{
   border: 0;
   padding: 0;
  }
  /*实现图片按钮*/
  .button {
   font: 0/0 a;
   color: transparent;
  }

另外在这些按钮中使用padding值来代替行高居中的效果,在firefox和opera浏览器下只识别默认行高:

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表