The reason i want to use the together is that i want to hide the content like display: none does, without leaving any whitespace as visibility: hidden does.
At the same time i want the hidden content not to be copied when the user copies the entire table from the webpage, not because it is sensitive information but because the user hid the field and therefore doesn't want it copied. visibility: hidden doesn't copy but display: none does, so i have quite a dilemma.
Anyone know a solution?
Edit: What i ended up doing was just what was suggested, save the information as javascript (as it is not sensitive information anyways) and create/remove dynamically with javascript.