CSS vertical text for mozilla-firefox?
I have no problem with internet explorer. This code works on msie but not on mozilla firefox.
<style>
.my_vertical_text { writing-mode: tb-rl; filter: flipv fliph; }
</style>
<p class="my_vertical_text ">A vertical text with css</p>
I need it for a table header (data grid view). Is there a solution without text-over-images for both msie and ff?
Similar entries
- CSS Text effects for MSIE
- Comparison of Mozilla Firefox 4 and Microsoft Internet Explorer 9
- Jquery's effects doesnt work with Internet Explorer
- Mozilla Firefox vs Microsoft Internet Explorer
- HTML horizontal list elements instead vertical
- DropDown / Rollover Menu with pure CSS / HTML
- Pure CSS Mouseover Menu without Javascript
- Seoquake - powerful search engine optimization tool for Mozilla Firefox
- Enable vertical scrollbars in Firefox permanently with CSS2
- Web2 Style CSS Dynamic Menu with Arrows and Background-Images
- Alexa Toolbar for Apple Safari
- Ajax Error when using Drupal with Firefox
- Howto read/export firefox cookies in linux
- Change background color onmouseover with Javascript
- Common HTML / Web colors
- Cool Text Effects with CSS Filters
- Remove underline from text-links (html-tag a)
- Easy access webpage
- Mouseover images with CSS
- How to add very long text to Drupal 6x?

Just if you use CSS3
why answer a question without actually answering the question? Your answer was as helpful as if you just said "yes". WTF?
Try this, <style type="text/css"> .my_vertical_text { display:block; -moz-transform: rotate(-90deg); } </style> <p class="my_vertical_text ">A vertical text with css</p> This works on mozilla Cheers :DPost new comment