About input file control and beautification

About input file control and beautification

When uploading on some websites, after clicking the "Browse" button, the [Select File] dialog box will pop up. To achieve this function, just use the input file control~

XML/HTML CodeCopy content to clipboard
  1. <!doctype html >     
  2. < html   lang = "en" >     
  3. < head >     
  4.    < meta   charset = "UTF-8" >     
  5.    < title > Document </ title >     
  6.    < style > </ style >     
  7. </ head >     
  8. < body >     
  9.   < input   type = "file"   value = "Select file"   />     
  10. </ body >     
  11. </ html >     

The effect picture is like this:

Notice! Don't think this is composed of a text and a button, it is actually a file control.

Today, I encountered a requirement at work: do not display "No file selected". After tinkering with it for an hour, I found that setting its width value solved it:

Code: <input type="file" value="Select file" />

The width value is set to 70px, as shown below:

【beautify】

Ideas:

The outer div is to provide a position reference for the input inside, because relative positioning is required when writing styles, so that the real file control covers the simulated one, and then hides the file control (even if the file control is not visible)

XML/HTML CodeCopy content to clipboard
  1. <!doctype html >   
  2. < html   lang = "en" >   
  3. < head >   
  4.    < meta   charset = "UTF-8" >   
  5.    < title > Document </ title >   
  6.    < style >   
  7. .file-box{ position:relative;width:340px}
  8. .txt{ height:22px; border:1px solid #cdcdcd; width:180px;}
  9. .btn{ background-color:#FFF; border:1px solid #CDCDCD; height:24px; width:70px;}
  10. .file{ position:absolute; top:0; right:80px; height:24px; opacity:0;width:260px; }
  11.    </ style >   
  12. </ head >   
  13. < body >   
  14.      < br > < br >   
  15.      < div   class = "file-box" >     
  16.          < form   action = ""   method = "post"   enctype = "multipart/form-data" >     
  17.          < input   type = 'text'   name = 'textfield'   id = 'textfield'   class = 'txt'   />     
  18.          < input   type = 'button'   class = 'btn'   value = 'browse'   />     
  19.          < input   type = "file"   name = "fileField"   class = "file"   id = "fileField"   size = "28" />     
  20.      </ form >     
  21.      </ div >     
  22. </ body >   
  23. </ html >   

Effect:

The above article about input file controls and beautification is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

<<:  JavaScript data transmission between different pages (URL parameter acquisition)

>>:  Example of implementing QR code scanning effects with CSS3

Recommend

CentOS 6 Compile and install ZLMediaKit analysis

Install ZLMediaKit on centos6 The author of ZLMed...

Advanced techniques for using CSS (used in actual combat)

1. The ul tag has a padding value by default in Mo...

What is ssh port forwarding? What's the use?

Table of contents Preface 1. Local port forwardin...

Detailed explanation of CSS text decoration text-decoration &amp; text-emphasis

In CSS, text is one of the most common things we ...

Tutorial on installing mysql5.7.17 via yum on redhat7

The RHEL/CentOS series of Linux operating systems...

Solution to the problem of MySQL deleting and inserting data very slowly

When a company developer executes an insert state...

Detailed explanation of JavaScript animation function encapsulation

Table of contents 1. Principle of animation funct...

Enterprise-level installation tutorial using LAMP source code

Table of contents LAMP architecture 1.Lamp Introd...

How to implement Hover drop-down menu with CSS

As usual, today I will talk about a very practica...

How to Check Memory Usage in Linux

When troubleshooting system problems, application...

Alibaba Cloud domain name and IP binding steps and methods

1 Enter the Alibaba Cloud console, find the domai...

Share the problem of Ubuntu 19 not being able to install docker source

According to major websites and personal habits, ...

Detailed process of modifying hostname after Docker creates a container

There is a medicine for regret in the world, as l...

13 JavaScript one-liners that will make you look like an expert

Table of contents 1. Get a random Boolean value (...