4
Using the properties text-orientation
, writing-mode
and transform
you can get the result you want. Except in the case of transform
these are specifications recent, maybe not having support for older versions of browsers.
Observing:
These attributes in some browsers make it necessary to use the vendor (prefix).
Example: -webkit-text-orientation: upright;
.
See working here on jsfiddle.
Reference: MDN - text-orientation
Reference: MDN - writing-mode
Reference: MDN - Transform
Reference: MDN - Vendors/Prefixes
Thank you very much devgaspa. It looks very promising, although the regencies do not seem to be a cross-browser neh method. But I will test it yet. Soon I leave a feedback. Thanks
– Jonatas Amaral
@Jonatasamaral Thank you, one observation is that if you look at the fact that the attributes have vendors, it turns out to be a cross-browser method yes, the regency is on account of the old versions of the browsers that do not support these attributes.
– Lucas Fontes Gaspareto
Maybe I expressed myself badly with "cross browser", but I meant that according to the references would not be supported by all browsers (example in text-orientation: http://imgur.com/OgXiUCv)
– Jonatas Amaral