Advertisement
wesleyac

HTML/CSS shape thing.

Aug 21st, 2014
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <style>
  4.             .br {
  5.                 background-color: #000;
  6.                 width: 50px;
  7.                 height: 50px;
  8.             }
  9.             .ws {
  10.                 background-color: #fff;
  11.                 width: 50px;
  12.                 height: 50px;
  13.                 border-radius: 0 50px 0 0;
  14.             }
  15.         </style>
  16.     </head>
  17.     <body>
  18.         <div class="br">
  19.             <div class="ws">
  20.  
  21.             </div>
  22.         </div>
  23.     </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement