CSS input checkbox自定义样式

页面设计中,我们可能需要对input checkbox元素定义样式。这篇文章是关于input checkbox自定义样式的css实例。希望对大家有帮助。

代码如下,如有不懂的请加QQ群:126246777
 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-cn">
<head>
<title>CSS input checkbox自定义样式</title>
<style type="text/css">
.compare_button .checkboxcss {
  cursor: pointer;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  left: 0;
  background: #f7f7f7;
  border: 2px solid #f5b34f;
  border-radius: 5px;
}
.compare_button {
  position: relative;
}
.compare_button .checkboxcss:after {
  opacity: 0;
  content: '';
  position: absolute;
  width: 7px;
  height: 3px;
  background: transparent;
  top: 3px;
  left: 3px;
  border: 3px solid #1e8cc5;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.compare_button input[type=checkbox]:checked + label:after {
  opacity: 1;
}
</style>
</head>
<body>
<div class="compare_button">
    <input type="checkbox" id="compare_39680" class="checkbox-input">
    <label class="checkboxcss" for="compare_39680"></label>
    <span>compare text</span>
  </div>
</body>
</html>

效果图:
CSS input checkbox自定义样式
 

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

html中,当input标签获取焦点的时候(例如,当光标放在input框中准备输入值时), input标签外围会出现边框,有的时候我们需要去掉这个边框,可以使用css的outline:none;属性将其去掉
在Iphone的Safari浏览器下查看网页时, 会看到input框有圆角,但其他浏览器上没有圆角,如果希望页面在所有浏览器上看的效果一致,可以在input样式下加上这段css代码
请在各浏览器里查看以下input的显示效果! 解决后显示效果! 具体代码 .button{ margin:0; padding:0 0.25em; width:auto; *width:1;/*宽度不带单位我是第一次见,不知道其作用!- -!*/ overflow:visible; } 还有一个问题就是input的文字垂直居中问题,这里引