Click to See Complete Forum and Search --> : cellpadding?


Jay77710
01-27-2008, 07:13 PM
is there a CSS equivalent to the HTML table attribute cellpadding?

just so you can see...
<table cellpadding="0">

beahawk
01-27-2008, 07:23 PM
td { padding:10px; }

Jay77710
01-27-2008, 07:37 PM
so that will make the same effect as the <table cellpadding="0"> attribute?

beahawk
01-27-2008, 07:40 PM
nope, that would give it 10px padding.

padding:0;

would give it a padding of zero.

Jay77710
01-27-2008, 08:16 PM
thanks