+ 2
Cellpadding and Cellspacing
I'm beginner in HTML and CSS, i have Learnt to code but i m getting problem in understanding the use of Cellpadding and Cellspacing please anyone elaborate its use and difference also
4 Réponses
+ 12
Cellspacing = space between each cell in table
Cellpadding = space between cell content and border
+ 4
Cellpadding, cellspacing and border are deprecated...
It's strongly advisable to use CSS properties instead:
table {
border:1px solid black; /* use instead of setting 'border' attribute in <table> tag */
border-spacing:5px; /* use instead of setting 'cellspacing' in <table> tag */
}
td {
padding:5px; /* use instead of setting 'cellpadding' in <table> tag */
}
+ 2
cellspacing means space between each cell..
cellpadding means space between each element(text or somethig)
+ 1
thanks 😊