clipping-3.html 480 B

12345678910111213141516171819202122232425262728
  1. <!doctype html>
  2. <html><head>
  3. <title>Border clipping</title>
  4. <style>
  5. .div1 { width: 50px; height: 50px;
  6. border: 10px solid blue;
  7. position: fixed;
  8. background: blue;
  9. left: 50px;
  10. top: 50px;
  11. }
  12. .div2 { width: 50px; height: 50px;
  13. border: 10px solid red;
  14. position: fixed;
  15. background: red;
  16. left: 80px;
  17. top: 80px;
  18. border-radius: 10px;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="div1"/>
  24. <div class="div2"/>
  25. </body></html>