I\'m using Twitter Bootstrap and some custom css (found here) to have dropdown menus open up on mouseover.
I am using the \"caret\" on a on the root menu items to show
I added a rotation class to the span
HTML:
CSS:
.rotate270 { -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -o-transform: rotate(-90deg); -ms-transform: rotate(-90deg); transform: rotate(-90deg); }
You can obviously create other angle classes as desired.