Pure CSS implementation of radio and checkbox effect example

Pure CSS implementation of radio and checkbox effect example

radio-and-checkbox

Pure CSS to achieve radio and checkbox effects

reset-radio

When developing PC projects, radio and checkbox components are often used. However, because the native styles are relatively inconsistent with the designer's design style, we may often reference third-party modules to implement them, or hack them through other methods such as JS. This not only increases the amount of code, but is also very complicated, so there is this pure CSS implementation that relies on native input[radio] and input[checkbox]. The main code is as follows:

HTML main code

<div class="reset-radio">
    <input checked type="radio" id="age1" name="age">
    <span class="real-target"></span>
</div>

CSS code, here mainly through a child node span to cooperate with the input: checked brother selector to modify the style

.reset-radio {
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
}

.reset-radio .real-target {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    display: inline-block;
    background: #ffffff;
    border: 1px solid #dadde0;
    border-radius: 100%;
    top: 0;
    left: 0;
    bottom: 0;
}

.reset-radio input[type=radio] {
    cursor: pointer;
    z-index: 2;
    width: 16px;
    height: 16px;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    right: 0;
    bottom: 0;
}

.reset-radio input:checked+span {
    border-color: #48b4ec;
}

.reset-radio input:checked+span::before {
    content: '';
    position: absolute;
    background: #48b4ec;
    width: 6px;
    height: 6px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

reset-checkbox

The principle of reset-checkbox is the same, so I won't go into details.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Definition and usage of MySQL cursor

>>:  Brief analysis of the introduction and basic usage of Promise

Recommend

Detailed analysis of the parameter file my.cnf of MySQL in Ubuntu

Preface Based on my understanding of MySQL, I thi...

JavaScript implements Tab bar switching effects

Here is a case that front-end developers must kno...

Introduction to the use of select optgroup tag in html

Occasionally, I need to group select contents. In ...

Oracle VM VirtualBox installation of CentOS7 operating system tutorial diagram

Table of contents Installation Steps Environment ...

15 Vim quick reference tables to help you increase your efficiency by N times

I started using Linux for development and enterta...

How to Run a Command at a Specific Time in Linux

The other day I was using rsync to transfer a lar...

Some experience in building the React Native project framework

React Native is a cross-platform mobile applicati...

Detailed explanation of Vue configuration request multiple server solutions

1. Solution 1.1 Describing the interface context-...

Solution to Mysql binlog log file being too large

Table of contents 1. Related binlog configuration...

Implementation of Docker packaging image and configuration modification

I have encountered many problems in learning Dock...

How to find the my.ini configuration file in MySQL 5.6 under Windows

Make a note so you can come back and check it lat...

Are the value ranges of int(3) and int(10) the same in mysql

Table of contents Question: answer: Reality: Know...

Problems and pitfalls of installing Mysql5.7.23 in Win10 environment

I read many tutorials, but found that I could nev...