CSS Select box rows

Associate
Joined
26 Nov 2004
Posts
1,480
Location
Gran Canaria
Hi

Can someone please tell me how to display multiple rows of a select box by default. In html it's the size attribute but I cannot for the life of me find the css attribute.

Thanks in advance.
 
It's an html attribute - 'size' for the number to display, 'multiple' to allow multiple items selectable:
Code:
<select name="selectBox" size="4" multiple="multiple">
 <option>1</option>
 <option>2</option>
 <option>3</option>
 <option>4</option>
</select>
 
Thanks for the answering. :)

I am already using that but am (still) trying to seperate this into a css file.
 
Back
Top Bottom