Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My Question: How can i leave a Table its TD without text, without making it disappear.

Kind Regards, Ixecube

I use this HTML code:

<div id="push_down"></div>

    <div id="global_wrapper">
       <table cellpadding="0" cellspacing="0" border="0" id="sep_table">
           <tr>
              <td id="side_1"></td>
              <td id="main"></td>
              <td id="side_2"></td>
           </tr>
      </table>
    </div>

And this CSS code:

html, body {
margin: 0px;
padding: 0px;
}

#push_down {
    padding-top: 53px;
}
#global_wrapper {
}
#sep_table {
    margin: 0px auto;
    width: 100%;
}
#side_1 {
    background:url(../images/navbar-bg-left.jpg) center repeat-x;
    height:78px;
}
#main {
    background:url(../images/navbar.jpg) center no-repeat;
    height:33px;
    width: 989px;
    padding-top:45px;
}
#side_2 {
    background:url(../images/navbar-bg-right.jpg) center repeat-x;
    height:78px;
}
.navbar{
    font-size:14px;
    font-weight:bold;
    color:#FFF;
}
.navbar a:link{
    color:#FFF;
    text-decoration:none;
}
.navbar a:visited{
    color:#FFF;
    text-decoration:none;
}
.navbar a:hover{
    color:#131313;
    text-decoration:none;
}
.navbar a:active{
    color:#FFF;
    text-decoration:none;
}
share|improve this question

2 Answers

With css:

table {
empty-cells:show;
}

In html (not really clean):

<table>
<tr>
<td>&nbsp;</td>
</tr>
</table>
share|improve this answer
It works for IE and FF but not for Google Chrome – Ixecube Jul 26 '11 at 10:56
If there is &nbsp; in the cell, then it should work everywhere. – Kalle H. Väravas Jul 26 '11 at 10:58
@Ixecube - try adding Ixecube border-collapse: collapse to fix chrome. – easwee Jul 26 '11 at 10:59
@easwee Thats not working, im gonna keep the transparent image solution. Seems to work the best, thanks for the help though :) – Ixecube Jul 26 '11 at 11:05
@Ixecube It actually works with no problems with or without border-collapse - you must have something interfering with your style. Check sample test page: easwee.net/css/emptycelltest – easwee Jul 27 '11 at 11:41

you can add this style:

td{
    width:20px;
    height:20px;
    dispaly:block;
}
share|improve this answer
That would make all tds a fixed height- he probably doesn't want that. – easwee Jul 26 '11 at 10:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.