xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<style>
/* Hide the default file input text */
input[type="file"] {
color: transparent;
}
/* Optionally style the file input field */
.custom-file-input {
border: 1px solid #ccc;
padding: 5px;
background-color: white;
border-radius: 4px;
}
</style>
</head>
<body>
<input type="file" class="custom-file-input" />
</body>
</html>