Cellpadding is HTML padding, as specific to table cells.

learn more… | top users | synonyms

-1
votes
0answers
10 views

Padding and Margin

I've been trying to disappear the margin and padding of a cell that includes a table, i've created a css and assign it to the table, the cell and the inside table, but it doesn't work, there is the ...
0
votes
0answers
31 views

jQuery remove cellpadding and cellspacing attributes fot HTML5 validation

I have some code that is inserted dynamically and I can't touch it but I need to validate it as HTML5, that's why I need to remove cellpadding and cellspacing attriburtes from the entire page ...
0
votes
6answers
162 views

Html: Difference between cell spacing and cell padding [closed]

I am new to html. I am not able to understand the difference between cell spacing and cell padding. Can anyone help me? Thanks.
-1
votes
1answer
114 views

Mystery Padding..?

I recently designed and finished 2 newsletters; but when I went back to make a quick change (add a background color to the outside of the container) I realized that there is some mystery padding ...
0
votes
1answer
75 views

mathml on iOS — mtable row spacing

This is driving me crazy. I need spacing between the rows of my mtable elements. For now, I am content to get it in the html; once I have that working, I'll try to move it to CSS. Here are some ...
0
votes
0answers
26 views

What is padding in reference to widths and heights in Android's context?

I understand that fill_parent and match_parent supposedly mean the same thing in Android once you go above API 8, and I know these options determine the size of components in the XML layout of ...
0
votes
2answers
99 views

Unwanted row space in TABLE

I have a table which contains a segmented picture. Picture is segmented due to adding mouse over effect on some parts of picture. Although the stand-alone version is OK, when integrated to WordPress ...
1
vote
2answers
63 views

Not able to get this link alligned properly

Edit: I'm not an Html pro. I want to add this text : AIM -> Historian AIM -> AIM AIM -> PI Historian -> PI Perfectly aligned like the ones above in the picture. It is one link with ...
0
votes
2answers
147 views

how to add padding to the top and bottom cell of a dynamically generated table?

i have a dynamically generated table ie the contents of it's cells are drawn from a database and each row is created depending on how many rows are in the database. each cell has a rounded border ...
2
votes
1answer
152 views

In IE7/8, jQuery tells me cellpadding=0 cells have padding of 1px

This is a strange problem - in the following jsFiddle, jQuery returns 0px for a cell's padding, when using IE7 or IE8, which is correct: http://jsfiddle.net/ZmfHE/ However, when I test this locally ...
0
votes
1answer
230 views

How to add only horizontal padding to a <td> with NO CSS

Is there a way to use cellpadding for just left and right? I am looking for answers but all I keep finding is CSS.
0
votes
1answer
114 views

TOAD SQL - LPAD Number, but also add decimals?

Basically what I'm trying to do is add '000' to a number (between 5-8 characters in length) and make the whole numbers have decimals. What I came up with is: SELECT DISTINCT '000' || TO_CHAR(Blah, ...
1
vote
4answers
726 views

How to set table cell padding from CSS?

I am struggling with a cell padding issue in a given HTML table (generated by Drupal). The table is the following: I tried the following: .view-thumbnails-of-tips-and-tricks { padding: 10px ...
4
votes
1answer
1k views

ITextSharp 4.1.6. PDF Table - how to remove whitespace on top of each cell? [padding and leading already set to 0]

I'm having a problem with ITextSharp's tables. I'd like to have cells without top & bottom padding, so that they are placed closer to each other. Although I have set the padding and the leading ...
4
votes
3answers
3k views

Removing the extra padding in a GridView in android

I want to remove the extra padding that appears in a grid view. I have images of the size 128*128 which will be occupying cells in the grid. But somehow there is an extra space that gets added to the ...
0
votes
1answer
7k views

How can I remove/adjust the cell padding/margin of UITableViewCell?

I am using the below code; it works but the text appears with few pixels left padding/margin. How can I remove/adjust the cell padding/margin? - (UITableViewCell *)tableView:(UITableView *)tableView ...
6
votes
4answers
742 views

HTML / CSS formatting: TRUE spacing between cell <-> cell, not between cell <-> any

I'm looking for hints regarding the spacing between table cells. I'm aware of cellspacing / cellpadding in HTML and their CSS equivalents border-spacing / padding, but they're doing more that what I ...
0
votes
1answer
395 views

For IE8 - Trying to set cell spacing/padding to 0px in combination with CSS display's table_cell

I tried to vertically align some content into div box. to achieve this I have found some CSS that works perfect. Except for you know who it doen't: IE8. When using the display attribute with the value ...
2
votes
2answers
702 views

Table-cell inside div has extra top padding

I have parent div called "box", and inside it there's a child div, "innerbox". innerboox holds text and a quote mark icon in the top left corner. However, there's an extra line / spacing at the top of ...
1
vote
2answers
158 views

HTML cell containing css scrollbars — how can I get rid of the padding?

I have an HTML table, where each cell contains a large amount of data. I would like each cell to be individually scrollable (sort of like "panes"), so I created a CSS class that includes the ...
35
votes
5answers
30k views

Why are cellspacing and cellpadding not CSS styles

I don't know why this bothers me so much, but when I create websites, I always try to do all my styling with CSS. However one thing I always have to remember to do when I'm working with tables is add ...