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"> </th><th scope="col"> </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
Post a Comment