On one of my pages, I have an asp GridView and I want to display the text vertically to improve its printing quality. I am currently using CSS to achieve this effect: .rotate { -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); width: 25px; }
It works in Firefox, but the width of 25px is not applied. In Internet Explorer, the width is set correctly but the text remains horizontal. Does anyone know how to make this work properly in both browsers?