div+css实现checkbox美化多选勾选效果代码

代码语言:html

所属分类:布局界面

代码描述:div+css实现checkbox美化多选勾选效果代码

代码标签: div css checkbox 美化 多选 勾选

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  
  
  
  
<style>
input:where(.chip[type="checkbox"]) {
  --color: #6c6;
  font-size: 1rem;
  appearance: none;
  position: relative;
  padding: 0.5em 1em 0.5em 2em;
  border: 1px solid #0004;
  border-radius: 100em;
  overflow: hidden;
  margin: 0;
  display: inline-block;
  
  &::after {
    content: attr(value);
    white-space: pre;
    line-height: 1;
    position: relative;
  }
  
  &::before {
    content: "".........完整代码请登录后点击上方下载按钮下载查看

网友评论0