Input type file hidden click - HTML CSS CSS Form

HTML CSS examples for CSS Form:input

Description

Input type file hidden click

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--  w  ww.j  a v a  2  s .  c o  m-->
 <body> 
  <label for="myfileid"> <img src="https://www.java2s.com/style/demo/InternetExplorer.png" width="250"> </label> 
  <input type="file" name="something" id="myfileid" style="display:none;">  
 </body>
</html>

Related Tutorials