Advertisement
tommasov

Untitled

Aug 2nd, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.40 KB | None | 0 0
  1. <style>
  2.     .uno {
  3.         width:300px;
  4.         height:100px;
  5.         background-color: red;
  6.         position: relative;
  7.         overflow: hidden;
  8.     }
  9. .due {
  10.     width: 100px;
  11.     height: 100px;
  12.     transform: rotate(45deg);
  13.     background-color: white;
  14.     margin-left: -50px;
  15.     position: absolute;
  16.     top:0;
  17.     left:0;
  18. }
  19. </style>
  20. <div class="uno">
  21.     <div class="due"></div>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement