Li: Difference between revisions

From CIRPwiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 10: Line 10:
</style>
</style>


a<br
style="clear:both"
/>b


<div style="width:200px; height:100px; background-color:red; " > a </div>
 
<div style="width:200px; height:100px; background-color:red; transform:rotate(7deg); -ms-transform:rotate(7deg); -webkit-transform:rotate(7deg);" > a </div>

Revision as of 18:04, 22 April 2014

<style>div{ width:200px; height:100px; background-color:red; /* Rotate div */ transform:rotate(7deg); -ms-transform:rotate(7deg); /* IE 9 */ -webkit-transform:rotate(7deg); /* Opera, Chrome, and Safari */ } </style>


a