c# - twitter bootstrap table css -


i developing asp.net c# application using twitter bootstrap framework.

i trying not add change or add css wanted know following

i have asp.net gridview, renders table. wanted know css class applied tables?

asp.net c# twitter bootstrap

<table cellspacing="0" rules="all" border="1" id="videolist" style="border-  collapse:collapse;">         <tr>             <th scope="col">&nbsp;</th><th scope="col">&nbsp;</th>         </tr><tr>             <td>senior care</td><td>                         </td>         </tr><tr>             <td>cardiac catheterization lab</td><td>                         </td>         </tr>     </table> 

any ideas appreciated.

well minimum styling can added "table" class. is:

mygrid.cssclass = "table"; 

optionally, can include additional table formatting such as

mygrid.cssclass = "table table-striped table-bordered"; 

to see more noticeable styling


Comments

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -