Pure CSS to add style to select (no script) implementation

Pure CSS to add style to select (no script) implementation
Change the default style of select, usually through ul,li to simulate to achieve.
There are many Jquery plug-ins that change the default select style in this way.
According to the feedback from the programmer, this method cannot obtain data after the form is submitted. Later, after experiments, different JS/Jquery plug-ins were used, and the result was the same: the data could not be obtained.

Later, I read a blog written by a foreigner. He used CSS style to add a div outside the select, set the width of the select to be smaller than the width of the parent div, and then change the style of the default arrow of the select by setting the background attribute of the div.
This method is a good method. It does not require writing scripts, but only uses pure CSS to implement it.

However, this method also has flaws. In the IE series, there will be a background color block when a certain option is selected. IE7-IE10 all have this bug.
In Opera, the background image of the div is not displayed, that is, the drop-down arrow of the select is not displayed. I don't know what the reason is.
The following code

Copy code
The code is as follows:

<div class="select_style">
<select name="select">
<option>AAAAAAAAAAA</option>
<option>BBBBBBBBBBB</option>
<option selected>CCCCCCCCCCC</option>
<option>DDDDDDDDDD</option>
</select>
</div>


Copy code
The code is as follows:

.select_style {width:240px; height:30px; overflow:hidden; background:url(../images/arrow.png) no-repeat 215px;
border:1px solid #ccc;
-moz-border-radius: 5px; /* Gecko browsers */
-webkit-border-radius: 5px; /* Webkit browsers */
border-radius:5px;
}
.select_style select { padding:5px; background:transparent; width:268px; font-size: 16px; border:none; height:30px;
-webkit-appearance: none; /*for Webkit browsers*/
}

<<:  Detailed process of installing and deploying onlyoffice in docker

>>:  MySQL restores data through binlog

Recommend

Summary of practical skills commonly used in Vue projects

Table of contents Preface 1. Use $attrs and $list...

Pure HTML and CSS to achieve JD carousel effect

The JD carousel was implemented using pure HTML a...

Linux nohup to run programs in the background and view them (nohup and &)

1. Background execution Generally, programs on Li...

Master the commonly used HTML tags for quoting content in web pages

Use blockquote for long citations, q for short ci...

Building an image server with FastDFS under Linux

Table of contents Server Planning 1. Install syst...

Vue+Openlayer uses modify to modify the complete code of the element

Vue+Openlayer uses modify to modify elements. The...

A brief discussion on MySQL index optimization analysis

Why are the SQL queries you write slow? Why do th...

Centos8 (minimum installation) tutorial on how to install Python3.8+pip

After minimizing the installation of Python8, I i...

Introduction to Nginx regular expression related parameters and rules

Preface Recently, I have been helping clients con...

Analysis of Sysbench's benchmarking process for MySQL

Preface 1. Benchmarking is a type of performance ...

Details about the like operator in MySQL

1. Introduction When filtering unknown or partial...

Analysis of the use and principle of Docker Swarm cluster management

Swarm Cluster Management Introduction Docker Swar...