I have a container styled to look like a button, and I want to display the text in it vertically while maintaining a neat appearance. How can I achieve this effect? FIDDLE
<div id="btn-toggle-menu">Hide Menu</div>
CSS:
#btn-toggle-menu {
position:fixed;
width:10.9px;
line-height:25px;
cursor:pointer;
border:1px solid #333;
background-color:#ccc;
text-align:center;
font-weight:bold;
font-size:20px;
word-wrap: break-word;
}