css如何设置checkbox大小-LMLPHP

本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>document</title>
    <style>
      input[type="checkbox"] {
        margin-right: 10px;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position: relative;
      }
    </style>
  </head>
  <body bgcolor="bisque">
    <div class="check-item">
      <input type="checkbox" class="check-item-in" id="checkbox3" />正常复选框
      <label for="checkbox3"></label>
    </div>
  </body>
</html>
登录后复制

效果如图:

css如何设置checkbox大小-LMLPHP

推荐学习:css视频教程

以上就是css如何设置checkbox大小的详细内容,更多请关注Work网其它相关文章!

09-19 10:05