I'm trying to make vertical text at table column header. I've made it, Now, I want to make the vertical-text's column much more thinner as those columns contain numbers only. For that reason, I tried to decrease that column(th)'s width, but, it didn't work! How can I fix this?
Some Css:
table.myTable th.rotate-container {
height: 80px;
width: 30px;
text-align: left;
padding: 5px 5px;
}
table.myTable th.rotate-container > div {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
width: 80px;
}