1

I would like to make primefaces commandButton to vertical align. how to set commandButton's css in vertical align, as in the image below:

enter image description here

Rong Nguyen
  • 4,033
  • 5
  • 26
  • 51
Karim Oukara
  • 2,558
  • 8
  • 37
  • 49
  • 2
    Related: [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 Answers1

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,733
  • 1
  • 15
  • 19