shall (AT) uaex (DOT) edu (S Hall) wrote:
Quote:
I have a web page with several items in a select statement. |
Does it have a URL?
Quote:
Due to lack of room on screen I list 4 items. |
There's no real lack room on screen in the sense you think. The page
can be scrolled down as needed. It's much easier than using pulldown
menus, which are small scrollable areas.
Quote:
I want ALL of the items to print out on the printer for the user. |
Why? The select element (sic) is meant for use as a form control, and
forms are meant to be filled out on screen and submitted. There's
rarely any need for printing a form. The user might need to be able to
print the _data_ he has provided, but that's something that the form
handler should take care of, by echoing back the data in some nice
(non-form) format.
Quote:
Is this possible with CSS ? |
Not really.
Quote:
Example:
Select name="mycar
option value="1">Buick</option
option value="2">Chevy</option
option value="3">Ford</option
option value="4">Honda</option
etc...
/select |
You could try setting the height property for the select element in a
style sheet, inside @media print {...}. It's somewhat unclear what this
_should_ do. Or you could set display: block for select and option,
hoping that this affects the fundamental way in which they are
rendered. Or you could try setting the overflow property. All these
attempts will most probably fail for the great majority of browsers at
least.
--
Yucca,
http://www.cs.tut.fi/~jkorpela/