首页 > 其他分享 >input checkbox改变颜色

input checkbox改变颜色

时间:2022-12-13 10:12:39浏览次数:38  
标签:checkbox 颜色 12px color height input type

input[type=checkbox] {
  margin-right: 5px;
  cursor: pointer;
  font-size: 14px;
  width: 15px;
  height: 12px;
  position: relative;
}

input[type=checkbox]:after {
  position: absolute;
  width: 10px;
  height: 15px;
  top: 0;
  content: " ";
  background-color: #7B68EE;
  color: #fff;
  display: inline-block;
  visibility: visible;
  padding: 0px 3px;
  border-radius: 3px;
}

input[type=checkbox]:checked:after {
  content: "✓";
  font-size: 12px;
}

标签:checkbox,颜色,12px,color,height,input,type
From: https://www.cnblogs.com/xlsh/p/16977803.html

相关文章

  • Jquery中的CheckBox、RadioButton、DropDownList的取值赋值实现代码
    由于Jquery的版本更新很快,代码的写法也改变了许多,以下Jquery代码适query1.4版本以上Radio 1.获取选中值,三种方法都可以:$('input:radio:checked').val();$("input[type='ra......
  • How To Focus An Input In Vue?
    1-HowtoSetFocusonanInputinVue?Sometimesit’simportanttosetfocusoninput(programmaticallyorbydefault),itisoftenforaccessibility,and/or......
  • DataGear 制作自定义柱状图条目颜色的数据可视化看板
    DataGear看板提供了dg-chart-options图表选项配置功能,可自定义样式、位置、显示内容等图表选项,其中的processUpdateOptions回调函数配置项,可以在图表更新数据前以编程方式......
  • input框和按钮对齐
    ......
  • 如何给gif改变颜色
    1、通过ps打开gif2、选择色相/饱和度 3、通过Alt+左键出现下方图标选中图层的最上层 4、通过以下操作完成rgb的调色用于走投无路之时,方便调色的(自己总结不是公式......
  • STM32标准库中GPIO_ReadInputData与GPIO_ReadInputDataBit的区别
    GPIO_ReadInputData读的是GPIOx的整个IDR寄存器的数据,返回一个十六位数,对应IDR寄存器的十六位。所以参数只用传入GPIOx。uint16_tGPIO_ReadInputData(GPIO_TypeDef*GP......
  • How many types the input element has in Html?
    HowmanytypestheinputelementhasinHtml?TherearemanytypesofinputelementsinHTML,andtheexactnumbercanvarydependingonhowyoucountthem.......
  • notepad++8.1.1背景颜色设置护眼色
    Notepad++是免费软件,可以免费使用,自带中文,支持众多计算机程序语言: C,C++,Java,pascal,C#,XML,SQL,Ada,HTML,PHP,ASP, AutoIt, 汇编, DOS批处理,Caml, COBOL, Cmake......
  • Python模块fileinput操作文件和目录操作总结
    前言之前介绍Python的pathlib模块可以有效的路径及文件查找等方便操作,本篇介绍一个相对readlines()获取文件内容更高效的用法fileinput模块对一个或者多个文件的内容迭......
  • MFC窗口颜色的设置
    MFC窗口颜色的设置本文主要介绍对话框背景色以及控件颜色的设置(SetDialogBkColor()不再被支持)。 对话框背景色的设置 1、重载OnPaint()函数,即WM_PAINT消息,代码如下所示: ......