Apr 11, 2009 #1 L laxman Active member Joined Jun 14, 2008 Messages 26 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
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
Apr 13, 2009 #2 N Nate Bross Well-known member Joined Apr 6, 2005 Messages 601 Location Chicago, IL Can you post the code that you have? I hope you arent using a table for layout and this is some TABular data that you are using. Im 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; }
Can you post the code that you have? I hope you arent using a table for layout and this is some TABular data that you are using. Im 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; }