HTML CSS examples for CSS Widget:Button
Set dashed border for button element
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .file-drop {<!-- w w w . j a v a2s. c o m--> width: 150px; height: 150px; border: 5px dashed darkgrey; } .file-drop::-webkit-file-upload-button { display: none; } </style> </head> <body> <input type="file" name="geoFile" class="file-drop"> </body> </html>