Is there a way to print a page with a select box showing all elements within it, without displaying the default "Select item" text or dropdown arrow? I want users to see all options in the select box when printing this page.
<html>
<head></head>
<body>
<select> <option selected> Select item </option>
<option value="1" > 10 </option>
<option value="2"> 20 </option>
<option value="3"> 30 </option>
<option value="4"> 40 </option>
</select>
</body>
</html>