asp classic - Checkbox list in columns via JQuery -


how can create layout set of checkboxes evenly distributed columns @ top of page? i'm using jquery , classic asp.

use css , html:

    #checks_container {       width:600px;       overflow:auto;     }      .check{       float:left;       width:100px;     } 

html:

<div id="checks_container">   <div class="check"><input type="checkbox" name="myname" value="1" />one</div>   <div class="check"><input type="checkbox" name="myname1" value="2" />two</div>   <div class="check"><input type="checkbox" name="myname2" value="3" />three</div> </div> 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -