且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

HTML / CSS自定义复选框按钮图像问题

更新时间:2022-11-20 08:33:08

您可以自定义复选框的输入[type =checkbox] 和单选按钮只是CSS如果你喜欢。 https://www.google.com/search?q=css%20only %20custom%20checkbox 。基本思想是对标签设置样式,并隐藏实际的复选框。单击标签可设置/取消复选框,因此保留所有表单功能。唯一的缺点是,旧版本的IE需要一个优雅的后备,大多数解决方案提供。

You can customize checkboxes and radio buttons with just CSS if you prefer. https://www.google.com/search?q=css%20only%20custom%20checkbox . The basic idea is to style the label and hide the actual checkbox. Clicking on the label sets/unsets the checkbox, so all the form functionality is retained. The only downside is that old versions of IE require a graceful fallback, which most of the solutions provide.