Example code for CSS pseudo-classes to modify input selection style

Example code for CSS pseudo-classes to modify input selection style

Note: This table is quoted from the W3School tutorial

Classification and function of pseudo-elements:

Let's take a look at the sample code of CSS pseudo-class to modify the input selection style. The code is as follows:

The after pseudo-class and font symbols are mainly used.

input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
}
input:after{
    content: "";
    font-size: 18px;
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    border: 1px solid #666fff;
    vertical-align: bottom;
}
input:checked:after{
    content: "\2714";
}

The effect is as follows:

This is the end of this article about using CSS pseudo-class to modify input selection style. For more relevant CSS input selection style content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  Detailed process of installing the docker plugin in IntelliJ IDEA (2018 version)

>>:  JS ES new features template string

Recommend

Detailed description of the function of meta name="" content="

1. Grammar: <meta name="name" content...

Tutorial on how to modify element.style inline styles

Preface When we were writing the web page style a...

Vue.js handles Icon icons through components

Icon icon processing solution The goal of this re...

Solution to Incorrect string value in MySQL

Many friends will report the following error when...

How to set up the use of Chinese input method in Ubuntu 18.04

In the latest version of Ubuntu, users no longer ...

In-depth analysis of Vue's responsive principle and bidirectional data

Understanding object.defineProperty to achieve re...

Analysis of the principle of Vue nextTick

Table of contents Event Loop miscroTask (microtas...

Linux CentOS MySQL database installation and configuration tutorial

Notes on installing MySQL database, share with ev...

A brief discussion on JS packaging objects

Table of contents Overview definition Instance Me...

Design Association: Why did you look in the wrong place?

I took the bus to work a few days ago. Based on m...

Detailed steps to store emoji expressions in MySQL

Caused by: java.sql.SQLException: Incorrect strin...

Detailed explanation of data types in JavaScript basics

Table of contents 1. Data Type 1.1 Why do we need...