Position AFTER transform in CSS - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Position

Description

Position AFTER transform in CSS

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
#outer {<!-- www  .j a  v a 2s  .c om-->
   border:2px solid Chartreuse;
   width:601px;
   height:601px;
   position:relative;
}

#text {
   background:lightBlue;
   position:absolute;
   top:0;
   left:0;
   right:0;
   transform:translate(100%) rotate(91deg);
   transform-origin:left top;
   -webkit-transform:translate(100%) rotate(91deg);
   -webkit-transform-origin:left top;
}
</style> 
 </head> 
 <body> 
  <div id="outer"> 
   <p id="text">Lorem i</p> 
  </div>  
 </body>
</html>

Related Tutorials