JSFiddle - React, Tailwind, and code Playground

by trkli

HTML

<div class="el"></div>

CSS

.el {
  width: 200px;
  height: 25px;
  position: fixed;
  top: 0; 
  bottom: 0;
  margin: auto;
  right: 0;
  background: red;
  
  
-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);  
  
}