Here is a form I am working with:
<form action="file.php" method="GET">
<input type="hidden" name="page">
<select>
<option>Text 1</option>
<option>Text 2</option>
<option>Text 3</option>
</select>
<input type="submit">
Is there a way to use CSS to style this HTML so that the three option tags are displayed next to each other instead of in a drop down list? Similar to using float for elements?