I am trying to create a vertical button, but I canβt put the text in only one line.

So far, I:
CSS
#hp-ctn-howItWorks { position:fixed; top:300px; right: 0px; padding:0px; margin:0px; width: 40px; height:160px; background:#FF931E; z-index:15; border-radius: 3px 0px 0px 3px; } #hp-ctn-howItWorks img { margin: 15px 0px 0px 13px; } #hp-ctn-howItWorks p { color: #fff; -moz-transform:rotate(-90deg); -ms-transform:rotate(-90deg); -o-transform:rotate(-90deg); -webkit-transform:rotate(-90deg); }
HTML:
<div id="hp-ctn-howItWorks"> <img src="~/Content/images/ui-symb-arrow-left-white-15x15.png" width="15" height="15" /> <p>Como funciona</p> </div>
Any idea how I can click the text and put it on only one line?
source share