I need the text that I have inside a td appear vertically from bottom to top, I get the address but since the td has a background color, I get out of the border line that I put on the td ... I found already own functions of the css as:
writing-mode: horizontal-tb;
writing-mode: vertical-rl;
writing-mode: vertical-lr;
They fit the edge of the td, but the direction of these is from top to bottom and not the opposite as I need it. Currently this is the css that fails to overcome the edge lines:
.verticaltext {
text-align:center;
white-space:nowrap;
transform-origin:50% 50%;
transform: rotate(270deg);
}
Any ideas? Thanks in advance.