I would like to make primefaces commandButton to vertical align. how to set commandButton's css in vertical align, as in the image below:
Asked
Active
Viewed 107 times
1
-
2Related: [Using CSS to rotate an input's value 90 degrees](http://stackoverflow.com/questions/14233341/how-can-i-rotate-an-html-div-to-90-degrees). – skuntsel May 30 '13 at 10:12
1 Answers
2
You can use
transform: rotate(90deg) ;
-webkit-transform: rotate(90deg) ;
-moz-transform: rotate(90deg) ;
-o-transform: rotate(90deg) ;
-ms-transform: rotate(90deg) ;
See http://jsfiddle.net/poselab/54XvF/
CSS3 MAKER is a good tool to create your css transforms

PoseLab
- 1,841
- 1
- 16
- 22