corner-3.html 441 B

1234567891011121314151617181920212223
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Test when only some of the corners have a border-radius and the border-radius is greater than the sum of the border width and the element's content area width/height</title>
  5. <style>
  6. div {
  7. width: 0px;
  8. height: 100px;
  9. border: 15px solid rgba(0,0,255,0.5);
  10. border-radius: 0 30px 30px 0;
  11. position: absolute;
  12. left: 50px;
  13. top: 50px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div></div>
  19. </body>
  20. </html>