You can use word-wrap:break-word to get vertical text use following snippete
HTML:
<div class='verticalText mydiv'>Here is your text</div>
css:
.verticalText {
word-wrap: break-word;
font-size: 18px;
}
.mydiv {
height: 300px;
width: 10px;
}