What CSS should I use to make a cell's border appear even if the cell is empty?
IE 7 specifically.
|
What CSS should I use to make a cell's border appear even if the cell is empty? IE 7 specifically.
| |||
feedback
|
|
If I recall, the cell dosn't exist in some IE's unless it's filled with something... If you can put a (non breaking space) to fill the void, that will usually work. Or do you require a pure css solution? Apparently, IE8 shows the cells by default, and you have to hide it with | |||||||||||||
feedback
|
|
Another way of making sure there is data in all cells:
| |||||||||||||||
feedback
|
|
If you set the CSS:
Example HTML Document:
| |||||||
feedback
|
|
Ideally, you shouldn't have any empty cells in a table. Either you have a table of data, and there's no data in that specific cell (which you should indicate with "-", or "n/a/", or something equally appropriate, or - if you must - , as suggested), or you have a cell that needs to span a column or row, or you're trying to achieve some layout with a table that you should be using CSS for. Can we have a bit more detail? | |||
|
feedback
|
|
I just found the following. It's standards compliant but it doesn't work in IE. sigh.
| |||||||
feedback
|
|
The question asked for a CSS solution, but on the off-chance an HTML solution will do, here is one: Try adding these two attributes to the table element: frame="box" rules="all" like this:
| ||||
|
feedback
|
|
I happened across this question and haven't seen any answers that really addressed the issue. The problem results because IE7 does not see any internal content for the cell; in programming terms the cell is resulting as a Even empty However, you can trick the browser into thinking the cell has content, by giving the empty
This workaround is better than using a Note: in lieu of Tomalak's comment, it should be understood that hasLayout has nothing to do with | |||||
feedback
|
|
I guess this can't be done with CSS; You need to put a in every empty cell for the border to show in IE... | |||
|
feedback
|
|
"IE" isn't a useful term in this context anymore now that IE8 is out. IE7 always does "empty-cells:show" (or so I'm told ... Vista). IE8 in any of its "Quirks" or "IE7 Standards" modes always does "empty-cells:hide". IE8 in "Standards" mode defaults to "empty-cells:show" and supports the attribute via CSS. As far as I know, every other browser has correctly supported this for several years (I know it was added in Firefox 2). | |||
|
feedback
|
|
I'm taking this from another website but:
Use for the CSS for the table and TD element respectively. | |||
|
feedback
|
|
empty-cell only fixed Firefox (YES I really did have this issue in Firefox) IE 7 & 8 were still problematic.. This worked for me in both Firefox 3.6.x, IE 7 & 8, Chrome, and Safari: ==============================
============================== Had to use the * to make sure the table style was only applied to the IE browser. | |||
|
feedback
|
|
the solution from wbkang works great for me. just add | |||
|
feedback
|
|
This question's old, but still a top result in Google, so I'll add what I've found: Simply adding Best to avoid the extraneous code of adding an | |||
|
feedback
|
|
Try this if you can't use non-breakable space:
| |||
|
feedback
|