c# - Make div look like ListBox -


i have div contains table. need somehow change style , make ordinary listbox. possible or can make several border changes? (if so, how can view listbox standart style?)

<div id="div1" runat="server">    <table>       <tr><td>...</td></tr>       <tr><td>...</td></tr>       ...    </table> </div> 

by words: listbox have specific border. want make div border looks listbox border.

css code have custom borders

td { border-top:1px solid black; border-botton:1px solid black; } 

the above code add border in top , bottom, if expected


Comments

Popular posts from this blog

java - How to Configure JAXRS and Spring With Annotations -

visual studio - TFS will not accept changes I've made to a Java project -

php - Create image in codeigniter on the fly -