style sheet

laxman

Freshman
Joined
Jun 14, 2008
Messages
28
hi i have to create a style sheet which should applicable to .aspx table can any tell how to write style sheet for this if possible with sample
 
Can you post the code that you have? I hope you aren't using a table for layout and this is some TABular data that you are using.

I'm not sure what an aspx table is; a normal table tag, with a runat="server"?

You may want to try something like this:

Code:
<table id="myTable">
    ...
</table>

#myTable{
    width: 500px;
    height: 400px;
    padding:0;
}
 
Back
Top