How do I properly set some of the table cell to display text vertically.
with some help in forums I came up this following idea: http://jsfiddle.net/hr4tkg9q/
I am using the following jquery:
$(document).ready(function () {
$('td.rotate').css('height', $('td.rotate').width());
});
the problem is, it properly sets the vertical text in 1st column but not the second or third one. will appreciate if you can help.