So I'm building an html table, but I want to hide a full column. I.e., I do not want it to display, nor do I want it to take up space. It does, however, have data in it. I just don't want the user to see it (it has to be done this way as per orders from on high, and no this has nothing to do with any kind of homework). On all the elements in the column I've set the style as follows:
td.hiddenValue {
display: none;
width: 0px;
height: 0px;
}
But it's not working. Now, I'm not any kind of CSS guru (heck, I'm not even really a web designer, I just write backend code for the most part) so maybe I'm missing something simple here? Or is it just not possible to do? Any suggestions would be great, and please, if I can clarify any further let me know. Thanks in advance.
td.hiddenValue {
display: none;
width: 0px;
height: 0px;
}
But it's not working. Now, I'm not any kind of CSS guru (heck, I'm not even really a web designer, I just write backend code for the most part) so maybe I'm missing something simple here? Or is it just not possible to do? Any suggestions would be great, and please, if I can clarify any further let me know. Thanks in advance.