20 lines
439 B
HTML
20 lines
439 B
HTML
<!doctype html>
|
|
<link rel="stylesheet" href="chrome://reftest/content/forms/input/file/style.css">
|
|
<style>
|
|
.file {
|
|
background-color: blue;
|
|
border: 1px red solid;
|
|
width: 400px;
|
|
padding: 2px;
|
|
margin: 5px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.file > label {
|
|
/* color only applies to the label */
|
|
color: white;
|
|
}
|
|
</style>
|
|
<div class='file'>
|
|
<button>Browse…</button><label>No file selected.</label>
|
|
</div>
|