css设置input单选radio多选checkbox样式

2024-08-23 15:20

本文主要是介绍css设置input单选radio多选checkbox样式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

最近接手一个古老的项目,要修改里边的主题颜色,使用css的var方法一路轻松,最后在input的单选radio和多选checkbox被踩了刹车,也是有几年没做这种原始的项目手生了,最后经过几番折腾后,通过input的伪元素将其改造了,效果还不错在这里分享一下

未处理的样式

在这里插入图片描述

处理后的样式

在这里插入图片描述

主要代码部分

需要注意调整伪类:after和:before的尺寸和位置,根据项目的初始化样式调整, 主要适用于PC老项目

/* 主要代码部分 ----------------------------- Start *//* ==================== 多选框 */input[type=checkbox] {font-size: 14px;width: 15px;height: 12px;position: relative;vertical-align: middle;margin-right: 4px;}input[type=checkbox]:after {position: absolute;width: 10px;height: 15px;top: -2px;content: " ";background-color: #f4edfd;color: #fff;display: inline-block;visibility: visible;padding: 0px 3px;border-radius: 3px;border: 1px solid #cccfd5;}/* checkbox选中样式 */input[type=checkbox]:checked:after {background-color: #9b23ea;border-color: #9b23ea;}input[type=checkbox]:checked:before {content: "✓";display: block;position: relative;top: -5px;left: 4px;color: #fff;font-weight: 900;z-index: 1;font-size: 14px;}/* ==================== 单选框 */input[type=radio] {font-size: 14px;width: 14px;height: 10px;position: relative;border-radius: 50%;vertical-align: middle;margin-right: 4px;}input[type=radio]:after {position: absolute;width: 8px;height: 14px;left: -1px;top: -1px;content: " ";background-color: #f4edfd;color: #fff;display: inline-block;visibility: visible;padding: 0px 3px;border-radius: 50%;border: 1px solid #cccfd5;}input[type=radio]:checked:after {border-color: #9b23ea;}input[type=radio]:checked:before {content: "";display: block;position: relative;top: 2px;left: 2px;width: 8px;height: 8px;background-color: #9b23ea;border-radius: 50%;z-index: 1;}/* 主要代码部分 ----------------------------- Start */

示例代码

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>css设置input单选radio多选checkbox样式</title><style>*{padding: 0;margin: 0;}.box {width: 500px;margin: 10% auto;}/* 主要代码部分 ----------------------------- Start *//* ==================== 多选框 */input[type=checkbox] {font-size: 14px;width: 15px;height: 12px;position: relative;vertical-align: middle;margin-right: 4px;}input[type=checkbox]:after {position: absolute;width: 10px;height: 15px;top: -2px;content: " ";background-color: #f4edfd;color: #fff;display: inline-block;visibility: visible;padding: 0px 3px;border-radius: 3px;border: 1px solid #cccfd5;}/* checkbox选中样式 */input[type=checkbox]:checked:after {background-color: #9b23ea;border-color: #9b23ea;}input[type=checkbox]:checked:before {content: "✓";display: block;position: relative;top: -5px;left: 4px;color: #fff;font-weight: 900;z-index: 1;font-size: 14px;}/* ==================== 单选框 */input[type=radio] {font-size: 14px;width: 14px;height: 10px;position: relative;border-radius: 50%;vertical-align: middle;margin-right: 4px;}input[type=radio]:after {position: absolute;width: 8px;height: 14px;left: -1px;top: -1px;content: " ";background-color: #f4edfd;color: #fff;display: inline-block;visibility: visible;padding: 0px 3px;border-radius: 50%;border: 1px solid #cccfd5;}input[type=radio]:checked:after {border-color: #9b23ea;}input[type=radio]:checked:before {content: "";display: block;position: relative;top: 2px;left: 2px;width: 8px;height: 8px;background-color: #9b23ea;border-radius: 50%;z-index: 1;}/* 主要代码部分 ----------------------------- Start */</style>
</head><body><div class="box"><div><h2>地区</h2><ul><li><label><input type="radio" name="address" value="1">北京</label></li><li><label><input type="radio" name="address" value="2">上海</label></li><li><label><input type="radio" name="address" value="3">广州</label></li><li><label><input type="radio" name="address" value="5">深圳</label></li><li><label><input type="radio" name="address" value="5">杭州</label></li></ul></div><div><h2>爱好</h2><ul><li><label><input type="checkbox" name="hobby" value="1">跑步</label></li><li><label><input type="checkbox" name="hobby" value="2">钓鱼</label></li><li><label><input type="checkbox" name="hobby" value="3">爬山</label></li><li><label><input type="checkbox" name="hobby" value="4">游泳</label></li><li><label><input type="checkbox" name="hobby" value="5">骑行</label></li></ul></div></div>
</body></html>

该操作只适用于最原始的项目,最佳处理方案还是用自定义的替换,或者用个组件库layui之类的,现在vue或react这些基本都直接使用element或antd这些也基本上用不上这些了,使用过程有问题欢迎留言交流


最后一个问题

原生select在不自定义的情况下怎么能修改option的hover样式,目前还没找到任何能设置的方式在这里插入图片描述

这篇关于css设置input单选radio多选checkbox样式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1099756

相关文章

Spring MVC如何设置响应

《SpringMVC如何设置响应》本文介绍了如何在Spring框架中设置响应,并通过不同的注解返回静态页面、HTML片段和JSON数据,此外,还讲解了如何设置响应的状态码和Header... 目录1. 返回静态页面1.1 Spring 默认扫描路径1.2 @RestController2. 返回 html2

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

VUE动态绑定class类的三种常用方式及适用场景详解

《VUE动态绑定class类的三种常用方式及适用场景详解》文章介绍了在实际开发中动态绑定class的三种常见情况及其解决方案,包括根据不同的返回值渲染不同的class样式、给模块添加基础样式以及根据设... 目录前言1.动态选择class样式(对象添加:情景一)2.动态添加一个class样式(字符串添加:情

四种简单方法 轻松进入电脑主板 BIOS 或 UEFI 固件设置

《四种简单方法轻松进入电脑主板BIOS或UEFI固件设置》设置BIOS/UEFI是计算机维护和管理中的一项重要任务,它允许用户配置计算机的启动选项、硬件设置和其他关键参数,该怎么进入呢?下面... 随着计算机技术的发展,大多数主流 PC 和笔记本已经从传统 BIOS 转向了 UEFI 固件。很多时候,我们也

Linux中chmod权限设置方式

《Linux中chmod权限设置方式》本文介绍了Linux系统中文件和目录权限的设置方法,包括chmod、chown和chgrp命令的使用,以及权限模式和符号模式的详细说明,通过这些命令,用户可以灵活... 目录设置基本权限命令:chmod1、权限介绍2、chmod命令常见用法和示例3、文件权限详解4、ch

React实现原生APP切换效果

《React实现原生APP切换效果》最近需要使用Hybrid的方式开发一个APP,交互和原生APP相似并且需要IM通信,本文给大家介绍了使用React实现原生APP切换效果,文中通过代码示例讲解的非常... 目录背景需求概览技术栈实现步骤根据 react-router-dom 文档配置好路由添加过渡动画使用

SpringBoot项目引入token设置方式

《SpringBoot项目引入token设置方式》本文详细介绍了JWT(JSONWebToken)的基本概念、结构、应用场景以及工作原理,通过动手实践,展示了如何在SpringBoot项目中实现JWT... 目录一. 先了解熟悉JWT(jsON Web Token)1. JSON Web Token是什么鬼

使用Spring Cache时设置缓存键的注意事项详解

《使用SpringCache时设置缓存键的注意事项详解》在现代的Web应用中,缓存是提高系统性能和响应速度的重要手段之一,Spring框架提供了强大的缓存支持,通过​​@Cacheable​​、​​... 目录引言1. 缓存键的基本概念2. 默认缓存键生成器3. 自定义缓存键3.1 使用​​@Cacheab

java如何调用kettle设置变量和参数

《java如何调用kettle设置变量和参数》文章简要介绍了如何在Java中调用Kettle,并重点讨论了变量和参数的区别,以及在Java代码中如何正确设置和使用这些变量,避免覆盖Kettle中已设置... 目录Java调用kettle设置变量和参数java代码中变量会覆盖kettle里面设置的变量总结ja

使用Vue.js报错:ReferenceError: “Vue is not defined“ 的原因与解决方案

《使用Vue.js报错:ReferenceError:“Vueisnotdefined“的原因与解决方案》在前端开发中,ReferenceError:Vueisnotdefined是一个常见... 目录一、错误描述二、错误成因分析三、解决方案1. 检查 vue.js 的引入方式2. 验证 npm 安装3.