Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Reference case</title>
<style>
input[type="file"] { height: auto; }
.with-outline {
outline: 2px solid teal;
}
.wrapper {
border: 2px solid fuchsia;
}
</style>
</head>
<body>
<input type="file">
<br><br>
<input type="file" class="with-outline">
<br><br>
<div class="wrapper"><input type="file"></div>
</body>