GridView cell padding as percentage?

  • Thread starter Thread starter Ira Gladnick
  • Start date Start date
I

Ira Gladnick

Is there any way to set CellPadding for a GridView to a percentage, as
you can for a plain HTML table, rather than a fixed pixel amount?
 
Not with the CellPadding parameter.

You can see the effect of the CellPadding setting in the html source for the
page and try to reproduce the same effect with css classes or attributes.
 
Try ... gridview1.Attributes.Add("CellPadding ", "100%");

Eliyahu said:
Not with the CellPadding parameter.

You can see the effect of the CellPadding setting in the html source for the
page and try to reproduce the same effect with css classes or attributes.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]


Ira Gladnick said:
Is there any way to set CellPadding for a GridView to a percentage, as
you can for a plain HTML table, rather than a fixed pixel amount?
 
Back
Top