css3 - Chrome does not support "writing-mode" for BUTTON tag? -
i discovered possible bug in chrome unable find resource.
it seems writing-mode
not run on button
tag.
see living example details.
<a href="#;" class="pippo">pippo</a> <br><br> <button class="pippo">pippo</button> .pippo { writing-mode:vertical-lr }
is there workaround fix in chrome (in firefox runs correctly)?
you can try this. <button><p style="writing-mode:vertical-lr;">pippo</p></button>
Comments
Post a Comment