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
1. New Features MySQL 5.7 is an exciting mileston...
How to get the container startup command The cont...
The img tag in XHTML should be written like this:...
Table of contents Introduction Introduction Aggre...
mysql master-slave configuration 1. Preparation H...
When the resolution of the login interface is par...
webkit scrollbar style reset 1. The scrollbar con...
The fastest way to experience the latest version ...
Since I often install the system, I have to reins...
1. When ffmpeg pushes video files, the encoding f...
Table of contents Problem Overview Problem Reprod...
This article mainly introduces several scheduling...
I have been using CSS for a long time, but I have...
Container auto-start Docker provides a restart po...
It is not possible to use width and height directl...