7_圆角.html 405 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 100px;
  10. height: 100px;
  11. border:1px solid black;
  12. border-radius: 10px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div class="box">
  18. </div>
  19. </body>
  20. </html>