/    Sign up×
Community /Pin to ProfileBookmark

Question about cellpadding

I know that I can use HTML to set the cellpadding for an entire table, and I think I can do it cell-by-cell with CSS, but I would like to know if there any way to set cellpadding on the <td> level rather than at the <table> level with straight HTML?

to post a comment
HTML

1 Comments(s)

Copy linkTweet thisAlerts:
@toicontienJan 29.2007 — You'll want to use Cascading Style Sheets. The following code would go in an external CSS file, LINK'd to in your HTML document.
.cellType1 {
padding: 3px;
}

.cellType2 {
padding: 7px;
}


Then in your HTML...
[code=html]
<table>
<tr>
<td class="cellType1">Yeah</td>
<td class="cellType2">Buddy</td>
<tr>
</table>
[/code]
×

Success!

Help @House_of_Haus spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...